美文网首页
UITabview刷新总结

UITabview刷新总结

作者: Mr_董 | 来源:发表于2016-04-25 16:30 被阅读219次

    UITabview的刷新方式

    1.
     // 插入某些特定的行
    
        [self.tableView insertRowsAtIndexPaths:@[
    
                                                 [NSIndexPath indexPathForRow:0 inSection:0],
    
                                                 [NSIndexPath indexPathForRow:1 inSection:0]
    
                                                 ]withRowAnimation:UITableViewRowAnimationLeft];
    
    2.
    //删除某些特定的行
    
        [self.tableView deleteRowsAtIndexPaths:@[
    
                                                 [NSIndexPath indexPathForRow:0 inSection:0],
    
                                                 [NSIndexPath indexPathForRow:1 inSection:0],
    
                                                 [NSIndexPath indexPathForRow:2 inSection:0]
    
                                                 ]withRowAnimation:UITableViewRowAnimationRight];
    3.
     //刷新特定的行
    
        [self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:3 inSection:0]]withRowAnimation:UITableViewRowAnimationMiddle];
    

    相关文章

      网友评论

          本文标题:UITabview刷新总结

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