ACActionSheet
https://github.com/GardenerYun/ACActionSheet 代码地址
ACActionSheet *actionSheet = [[ACActionSheet alloc] initWithTitle:nil cancelButtonTitle:@"取消" destructiveButtonTitle:nil otherButtonTitles:@[@"删除"] actionSheetBlock:^(NSInteger buttonIndex) {
if(buttonIndex ==0) {
}
}];
[actionSheetshow];