iOS UITableView 刷新/移除动画小结

作者: 择势量投 | 来源:发表于2018-03-29 11:16 被阅读38次

       UITableView对于iOS开发者来说一定不陌生,你的APP很多界面都会用到它。关于UITableView的文章,已经不计其数,特别是UITableView优化的文章,非常值得仔细琢磨一番。

       今天我们来看看如何刷新UITableView的,一般情况下,刷新UITableView我们会直接调用reloadData方法。

    刷新UITableView

    [self.tableView reloadData];
    

       reloadData是刷新整个UITableView,为了效率和性能,我们可能需要局部刷新。比如:只刷新一个cell、只刷新一个section等等。这个时候在调用reloadData方法,虽然用户看不出来,但是有些浪费资源。

    刷新局部cell

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
    [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationFade];
    

       这样就可以很方便的刷新第一个section的第一个cell。虽然看起来代码多了,但是确实比较节省资源。尽量少的刷新,也是UITableView的一种优化。

    局部刷新section

    NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndex:0];
    [self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationFade];
    

       上面这段代码是刷新第0个section,若存在第2个section,当然你也可以同时刷新第2个section。

    刷新动画

       刷新UITableView还有几个动画:

    typedef NS_ENUM(NSInteger, UITableViewRowAnimation) {
    UITableViewRowAnimationFade,   //淡入淡出
    UITableViewRowAnimationRight,  //从右滑入       
    UITableViewRowAnimationLeft,   //从左滑入
    UITableViewRowAnimationTop,    //从上滑入
    UITableViewRowAnimationBottom, //从下滑入
    UITableViewRowAnimationNone,   //无动画
    UITableViewRowAnimationMiddle, //从cell中部扩展     
    UITableViewRowAnimationAutomatic = 100  //系统选择动画
    };
    

    移除动画

       静默局部刷新时,因为有刷新动画的存在,可能造成视图的闪动、跳动。我们可以使用UITableViewRowAnimationNone,强调不是用刷新动画,其实这个设置是不起作用的。
       我们可以使用系统代码块,取消动画效果。

    [UIView performWithoutAnimation:^{
    。。。
    }];
    

       本期的分享到了这里!

    相关文章

      网友评论

        本文标题:iOS UITableView 刷新/移除动画小结

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