美文网首页
iOS 开发如何刷新某行cell?如何刷线整个表格 TableV

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

作者: 随心吧 | 来源:发表于2017-02-27 16:32 被阅读111次
『导言』

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

  • 刷新整个表UITableView
     [self.tableView reloadData];
  • 刷新某一行cell
     [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
};

相关文章

网友评论

      本文标题:iOS 开发如何刷新某行cell?如何刷线整个表格 TableV

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