其他分享
首页 > 其他分享> > iOS开发—UITableView刷新 屏幕跳动

iOS开发—UITableView刷新 屏幕跳动

作者:互联网

 

    cell.showMoreBlock = ^{
//        @StrongObj(self);
        [UIView performWithoutAnimation:^{
            [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
        }];
    };

 

 

参考:

https://blog.csdn.net/potato512/article/details/81047441?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-3.essearch_pc_relevant&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-3.essearch_pc_relevant

标签:essearch,relevant,7Edefault,distribute,iOS,blog,pc,UITableView,屏幕
来源: https://www.cnblogs.com/qingzZ/p/15194430.html