iOS开发小技巧--cell往左拖拽出现很多按钮的实现,仅仅适用于iOS8以后

iOS开发小技巧--cell往左拖拽出现很多按钮的实现,仅仅适用于iOS8以后

 // 往左拖拽cell出现多个按钮的实现,仅仅适用于iOS_8.0以后
- (NSArray<UITableViewRowAction *> *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewRowAction *action = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
NSLog(@"点击删除的时候调用");
}];
UITableViewRowAction *action2 = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDefault title:@"编辑" handler:^(UITableViewRowAction * _Nonnull action, NSIndexPath * _Nonnull indexPath) {
NSLog(@"点击编辑的时候调用");
}];
action2.backgroundColor = [UIColor grayColor];
return @[action,action2];
}
上一篇:UOJ260 【NOIP2016】玩具谜题


下一篇:iOS 创建一个App目录结构