美文网首页
UITableView自带删除动画

UITableView自带删除动画

作者: 给你快乐 | 来源:发表于2016-03-09 16:07 被阅读1193次

    用到的方法 : 点击确定删除后调用方法1或方法2;(一般用方法2)

    1.删除某个分区:   [_tableView deleteSections:[NSIndexSet indexSetWithIndex:index.section] withRowAnimation:UITableViewRowAnimationLeft];

    2.删除一条Cell:    [_tableView deleteRowsAtIndexPaths:@[index.row] withRowAnimation:UITableViewRowAnimationRight];

    注意在删除前数据源要删除对应的数据.删除后要调用刷新界面 [_tableView reloadData];

    相关文章

      网友评论

          本文标题:UITableView自带删除动画

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