美文网首页
ios uitableviewcell滑动删除

ios uitableviewcell滑动删除

作者: warith | 来源:发表于2016-04-12 11:10 被阅读98次
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{
return TRUE;
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}

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

}

相关文章

网友评论

      本文标题:ios uitableviewcell滑动删除

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