美文网首页UITableView
UITableView开发常用以及遇到的问题

UITableView开发常用以及遇到的问题

作者: 老刘了 | 来源:发表于2018-08-21 13:43 被阅读58次

    UITableView局部刷新 刷新单个cell或section

        /*
         *  单个cell的刷新
         */
        //1.当前所要刷新的cell,传入要刷新的 行数 和 组数
        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
        //2.将indexPath添加到数组
        NSArray <NSIndexPath *> *indexPathArray = @[indexPath];
        //3.传入数组,对当前cell进行刷新
        [tableView reloadRowsAtIndexPaths:indexPathArray withRowAnimation:UITableViewRowAnimationAutomatic];
        
        /**
         *  单个Section的刷新
         */
        //1.传入要刷新的组数
        NSIndexSet *indexSet=[[NSIndexSet alloc] initWithIndex:0];
        //2.传入NSIndexSet进行刷新
        [tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
    

    修改分割线颜色

    [tableView setSeparatorColor:[UIColor blueColor]];
    

    相关文章

      网友评论

        本文标题:UITableView开发常用以及遇到的问题

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