iOS 开发如何刷新某行cell?如何刷线整个表格 TableV

2017-02-27  本文已影响111人  随心吧
『导言』

iOS开发中如何主动的自动刷新?整个表?某一行?

     [self.tableView reloadData];
     [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];
*  分析: 方法中`withRowAnimation:`
typedef NS_ENUM(NSInteger, UITableViewRowAnimation) {
    UITableViewRowAnimationFade,
    UITableViewRowAnimationRight,           // slide in from right (or out to right)
    UITableViewRowAnimationLeft,
    UITableViewRowAnimationTop,
    UITableViewRowAnimationBottom,
    UITableViewRowAnimationNone,            // available in iOS 3.0
    UITableViewRowAnimationMiddle,          // available in iOS 3.2.  attempts to keep cell centered in the space it will/did occupy
    UITableViewRowAnimationAutomatic = 100  // available in iOS 5.0.  chooses an appropriate animation style for you
};
上一篇 下一篇

猜你喜欢

热点阅读