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);
    }];
複製代碼
相關文章
相關標籤/搜索