欢迎光临
我们一直在努力

MXActionSheet 仿微信底部弹出视图

建站超值云服务器,限时71元/月

MXActionSheet 仿微信底部弹出视图

项目介绍:

代码demo已在Github开源, MXActionSheet 如果帮助到您,请点个星star,谢谢

MXActionSheet 是一个从底部上来的弹窗控件,仿微信里操作一样!

屏幕截图

一个底部标题 两个底部标题 删除底部标题 超过两个底部标题
一个底部标题.gif  两个底部标题.gif 删除底部标题.gif 超过两个底部标题.gif

如何使用

一个底部标题

[MXActionSheet showWithTitle:@"MXActionSheet Supporting bellow Styles" cancelButtonTitle:@"cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"title 1st"] selectedBlock:^(NSInteger index) {
        NSLog(@"------> index: %ld", index);
    }];

两个底部标题

[MXActionSheet showWithTitle:@"MXActionSheet Supporting bellow Styles" cancelButtonTitle:@"cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"title 1st", @"title 2nd"] selectedBlock:^(NSInteger index) {
        NSLog(@"------> index: %ld", index);
    }];

删除底部标题

[MXActionSheet showWithTitle:@"MXActionSheet Supporting bellow Styles" cancelButtonTitle:@"cancel" destructiveButtonTitle:@"destructive titles" otherButtonTitles:@[@"title 1st", @"title 2nd"] selectedBlock:^(NSInteger index) {
        NSLog(@"------> index: %ld", index);
    }];

超过两个底部标题

[MXActionSheet showWithTitle:@"MXActionSheet Supporting bellow Styles" cancelButtonTitle:@"cancel" destructiveButtonTitle:nil otherButtonTitles:@[@"title 1st", @"title 2nd", @"title 3th"] selectedBlock:^(NSInteger index) {
        NSLog(@"------> index: %ld", index);
    }];

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » MXActionSheet 仿微信底部弹出视图
分享到: 更多 (0)