MXActionSheet 是一个从底部上来的带动画弹窗控件,仿微信里操做同样!

代码demo已在Github开源, MXActionSheet, 若是帮助到您,点个星star哈!git

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

屏幕截图

一个底部标题 两个底部标题 删除底部标题 超过两个底部标题
一个底部标题.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);
    }];
复制代码
相关文章
相关标签/搜索