CCActionSheet有两种形式的list
####下图为其一:只显示文字,处于中间位置。
####下图为其二:显示icon和文字,文字居左对齐。
####下面是一种特殊的显示方式,设置属性maxcount(显示的最高高度=maxcount*cellheight),其余滑动显示。
###模仿微信自定义actionSheet 实现样式是模仿微信自定义actionSheet实现的。相似度还是较高的QAQ。
###使用 ####你可以使用cocoapods,也可以手动下载CCActionSheet中的文件,引用头文件#import "CCActionSheet.h"
pod 'CCActionSheet', '~> 1.0.1'
回调方式使用了两种,这里只举例使用block回调。
初始化
CCActionSheet *sheet = [[CCActionSheet alloc] initWithTitle:@"这是CCActionSheet" clickedAtIndex:^(NSInteger index) {
NSLog(@"selected: %ld",(long)index);
} cancelButtonTitle:@"取消" otherButtonTitles:@"我是第1个选择",@"我是第2个选择",@"我是第3个选择",@"我是第4个选择",@"我是第5个选择",@"我是第6个选择",@"我是第7个选择",nil];
设置样式
sheet.style = CCActionSheetStyleTextCenter;
设置显示最多cell数
sheet.maxCount = 5;
设置list形式下的icon,现在只能以字符串数组传入😄
sheet.iconImageNameArray = @[@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected",@"icon_connected"];
显示
[sheet show];