博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ios 弹框 MJPopup,KxMenu
阅读量:4983 次
发布时间:2019-06-12

本文共 1368 字,大约阅读时间需要 4 分钟。

IOS 弹框 如果直接弹出一个自定义的视图 可以选用第三方:

MJPopup

弹出:

if(!bandview)

    {

        bandview=[[[NSBundle mainBundle]loadNibNamed:@"bandView" owner:selfoptions:nil] firstObject];

        bandview.bdelagate=self;

        [bandview setFrame:CGRectMake(0, 0, 320, 160)];

    }

    int offset=ISIPhone5?100:50;

 

    [self presentPopupView:bandview animationType:MJPopupViewAnimationFadeoffset:offset];

收起

[self dismissPopupViewControllerWithanimationType:MJPopupViewAnimationFade];

 

一般的菜单弹出可用

KxMenu

 

 NSArray *menuItems =

    @[

      [KxMenuItem menuItem:@"明细统计方式"

                     image:nil

                    target:nil

                    action:NULL],

      

      [KxMenuItem menuItem:@"现金"

                     image:[UIImageimageNamed:@"action_icon"]

                    target:self

                   action:@selector(pushMenuItem:)],

      

      [KxMenuItem menuItem:@"余额"

                     image:[UIImageimageNamed:@"check_icon"]

                    target:self

                   action:@selector(pushMenuItem:)],

      

      [KxMenuItem menuItem:@"POS"

                     image:[UIImageimageNamed:@"reload"]

                    target:self

                   action:@selector(pushMenuItem:)]

      ];

    

    KxMenuItem *first = menuItems[0];

    first.foreColor = [UIColorcolorWithRed:47/255.0f green:112/255.0f blue:225/255.0f alpha:1.0];

    first.alignment = NSTextAlignmentCenter;

    

    CGRect rect=button.frame;

    CGFloat height=0.0;

    if(IOS7>=7.0)

    {

        height=64;

    }

    else

    {

        height=0.0;

    }

    [KxMenu showMenuInView:self.view

                 fromRect:CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, height)

 

                 menuItems:menuItems];

点击事件实现:

- (void) pushMenuItem:(KxMenuItem*)sender

转载于:https://www.cnblogs.com/wanghuaijun/p/5584105.html

你可能感兴趣的文章
smartconfig配置模式
查看>>
arcgis按要求删除点位
查看>>
estore商城案例(二)------登录&添加商品&商品列表(上)
查看>>
$ 专治各种python字符编码问题疑难杂症
查看>>
C++ STL 双端队列deque
查看>>
全面了解Nginx到底能做什么
查看>>
TCP三次握手与四次分手
查看>>
spoj839: Optimal Marks
查看>>
2 主要设计思路
查看>>
Wince实现软件开机自启动
查看>>
【BZOJ1106】【POI2007】立方体大作战tet(树状数组+贪心)
查看>>
【Python⑥】python的缩进,条件判断和循环
查看>>
java第九次作业
查看>>
vue 调用 ios提供的方法
查看>>
RapidWeaver 8.3 for Mac 共享版 – 强大的零编码H5网页开发工具
查看>>
2018多校第6场 1013 hdu6373 Pinball
查看>>
《英语修辞与写作(修订版)》黄任(编著)epub+mobi+azw3格式下载
查看>>
Linux htop工具使用详解
查看>>
(十)、iptables进行转发使内网能上网
查看>>
python之路《八》装饰器
查看>>