美文网首页
-[UITableViewCell _setDeleteAnim

-[UITableViewCell _setDeleteAnim

作者: 豪冷 | 来源:发表于2019-07-10 10:43 被阅读0次

    删除最后一个cell时,崩溃!

    *** -[UITableViewCell _setDeleteAnimationInProgress:]: message sent to deallocated instance 0x136dc6
    

    是最后一个cell时,做一下延迟处理

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        [self.tableView reloadData];
    });
    

    参考:
    http://blog.csdn.net/zly116813/article/details/39646093

    相关文章

      网友评论

          本文标题:-[UITableViewCell _setDeleteAnim

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