代码demo
已在Github
开源, MXActionSheet, 若是帮助到您,点个星star哈!git
MXActionSheet
是一个从底部上来的弹窗控件,仿微信里操做同样!github
一个底部标题 | 两个底部标题 | 删除底部标题 | 超过两个底部标题 |
---|---|---|---|
![]() |
![]() |
![]() |
![]() |
[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);
}];
复制代码