美文网首页
iOS UITableView 左滑删除

iOS UITableView 左滑删除

作者: 龍飝 | 来源:发表于2018-08-07 14:11 被阅读25次

//侧滑允许编辑cell

- (BOOL)tableView:(UITableView*)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath{

returnYES;

}

//执行删除操作

- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath{

NSLog(@"删除删除删除删除删除删除删除删除删除");

}

//侧滑出现的文字

- (NSString*)tableView:(UITableView*)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath*)indexPath{

return@"删除";

}

相关文章

网友评论

      本文标题:iOS UITableView 左滑删除

      本文链接:https://www.haomeiwen.com/subject/efzovftx.html