zoukankan      html  css  js  c++  java
  • UITableView的 beginUpdates 和 endUpdates<转>

    先看Apple API Reference中对这两个方法的描述

    beginUpdates

    endUpdates

    从上述描述中我们大概可以总结出四点

    1、beginUpdates 和 endUpdates必须成对使用

    2、使用beginUpdates和endUpdates可以在改变一些行(row)的高度时自带动画,并且不需要Reload row(不用调用cellForRow,仅仅需要调用heightForRow,这样效率最高)。

    3、在beginUpdates和endUpdates中执行insert,delete,select,reload row时,动画效果更加同步和顺滑,否则动画卡顿且table的属性(如row count)可能会失效。

    4、在beginUpdates 和 endUpdates中执行 reloadData 方法和直接reloadData一样,没有相应的中间动画。


    针对上面几点举几个栗子

    1、改变Row的高度

    直接调用

    [self.tableViewbeginUpdates];

    [self.tableViewendUpdates];

    接着tableview回调-(CGFloat)tableView:(UITableView*)tableView heightForRowAtIndexPath:(NSIndexPath*)indexPath,调整每一行的高度。

    2、同时insert,delete,select reload

    [self.tableViewbeginUpdates];

    [self.testArrayinsertObject:@(-1)atIndex:0];

    [self.tableViewinsertRowsAtIndexPaths:@[[NSIndexPathindexPathForRow:0inSection:0]]withRowAnimation:UITableViewRowAnimationAutomatic];

    [self.testArrayremoveObjectAtIndex:3];

    [self.tableViewdeleteRowsAtIndexPaths:@[[NSIndexPathindexPathForRow:2inSection:0]]withRowAnimation:UITableViewRowAnimationAutomatic];

    [self.tableViewselectRowAtIndexPath:[NSIndexPathindexPathForRow:3inSection:0]animated:YESscrollPosition:UITableViewScrollPositionMiddle];

    [self.tableViewreloadRowsAtIndexPaths:@[[NSIndexPathindexPathForRow:4inSection:0]]withRowAnimation:UITableViewRowAnimationAutomatic];

    [self.tableViewendUpdates];

    如何在做完动画之后执行某个方法呢?

    [CATransactionbegin];

    [CATransactionsetCompletionBlock:^{

    NSLog(@"aferCompletionBlock");

    }];

    [self.tableViewbeginUpdates];

    [self.tableViewendUpdates];

    [CATransactioncommit];

    如何控制动画的执行时间呢?

    [UIViewanimateWithDuration:2.0fdelay:0.0options:UIViewAnimationOptionCurveEaseInOutanimations:^{

    [CATransactionbegin];

    [CATransactionsetCompletionBlock:^{

    NSLog(@"after2");

    }];

    [self.tableViewbeginUpdates];

    [self.tableViewendUpdates];

    [CATransactioncommit];

    NSLog(@“after1”);

    }completion:^(BOOLfinished) {

    NSLog(@"after3");

    }];

    输出顺序: after1->after2->after3

    利用UIView的动画的执行时间来控制beginUpdates和endUpdates的动画时间。

  • 相关阅读:
    C#之Raw Socket实现网络封包监视
    es6Promise及小程序Promise用法
    在微信小程序的JS脚本中使用Promise来优化函数处理
    小程序踩过的一个小坑---解析二维码decodeURIComponent() url解码
    js json转url参数
    微信小程序-实现分享(带参数)
    php中的匿名函数和闭包(closure)
    微信小程序之回调函数
    php AES cbc模式 pkcs7 128位加密解密(微信小程序)
    微信小程序,开发中几个重要的知识点(加密解密,转发,进入场景,session_key)
  • 原文地址:https://www.cnblogs.com/deng37s/p/6933086.html
Copyright © 2011-2022 走看看