简易可自定义ActionSheet菜单
Email : [email protected]
欢迎Issue 欢迎邮件 欢迎Star
1.0.0 --- 初始版本 简单实现ActionSheet
-
OC版本
直接将XYActionSheet文件夹下OC文件添加到工程
Swift版本
直接将XYSideViewController文件夹下Swift文件添加到工程
// 定义菜单数组
NSArray *titles = @[@"拍摄", @"从手机相册选择"];
[[XYActionSheet actionSheet] showActionSheetWithTitles:titles selectedIndexBlock:^(NSInteger index) {
// index 对应 title数组的下标
// index == title.count 为取消操作
}
let titles = ["拍照", "从手机相册选择"]
XYActionSheet.actionSheet().showActionSheetWithTitles(titles, { (index) in
// index 对应 title数组的下标
// index == title.count 为取消操作
})