复杂业务中的 tableView 处理

2022-01-07  本文已影响0人  大成小栈

挺有意思~

1. 使 UITableView 停止滚动

你是不是想让 tableView 滚到哪停在哪?如下:

[_tableView setContentOffset:_tableView.contentOffset animated:NO];

2. UITableView 滚动回调方法的执行顺序

你是不是对 tableView 拖拽滚动过程中的scrollViewDidEndDragging:、scrollViewDidEndDecelerating:两个方法有疑惑?如下:

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
    NSLog(@" ----scrollViewWillBeginDragging---->> ");
}
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate {
    NSLog(@" ----scrollViewDidEndDragging---->> ");
}
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
    NSLog(@" ----scrollViewDidEndDecelerating---->> ");
}
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    NSLog(@" ----scrollViewDidScroll---->> ");
}

//// Log如下
2021-12-26 23:24:16.342277+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewWillBeginDragging---->>
2021-12-26 23:24:16.343020+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.359424+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.378549+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.403349+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.426958+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.446477+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.462370+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.488254+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:16.538023+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidEndDragging---->>
2021-12-26 23:24:24.314777+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewWillBeginDragging---->>
2021-12-26 23:24:24.316231+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.331232+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.362894+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.380299+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.400132+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.413904+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidEndDragging---->>
2021-12-26 23:24:24.414677+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.423152+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:24.439855+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
.
.
.
2021-12-26 23:24:26.072631+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:26.106503+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:26.140170+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidScroll---->>
2021-12-26 23:24:26.156451+0800 DJStoreModule_Example[84112:3027127]  ----scrollViewDidEndDecelerating---->>

3. UITableView 手动拖拽时的滑动方向

有时我们需要判断 tableView 的滚动是不是人为拖动的,人为触发、非人为触发的滚动回调中,处理事情的方式不一。判断方法如下:

#pragma mark - UITableViewDelegate
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    //NSLog(@" ----willDisplayHeaderView---->> %ld", (long)section);
    if (_dragType == StorePromotionDragTypeUp) {
        // ...
    }
}

- (void)tableView:(UITableView *)tableView willDisplayFooterView:(UIView *)view forSection:(NSInteger)section {
    //NSLog(@" ----willDisplayFooterView---->> %ld", (long)section);
    if (_dragType == StorePromotionDragTypeDown) {
        // ...
    }
}

#pragma mark - UIScrollViewDelegate
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView {
    _beginContentOffset = scrollView.contentOffset.y;
}

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
    _dragType = StorePromotionDragTypeNone;
    _beginContentOffset = MAXFLOAT;
}

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    
    if (_beginContentOffset != MAXFLOAT) {
        if (scrollView.contentOffset.y < _beginContentOffset ) {
            _dragType = StorePromotionDragTypeDown;
        } else if (scrollView.contentOffset.y > _beginContentOffset ) {
            _dragType = StorePromotionDragTypeUp;
        } else {
            _dragType = StorePromotionDragTypeNone;
        }
        // 只有手动拖动时,做一些事情...
        if (_dragType != StorePromotionDragTypeNone) {
            // ...
        }
    }
}

很简单,对不对?需要初始化一些参数哦,一看便知...

4. 关于 UITableView 的 reloadData 方法

有时候需要在 tableView reloadData之后做一些操作,但是又依赖于reloadData之后的一些状态,那么就可能有问题了,因为reloadData内部是异步执行但是又没有执行完成的回调。这样就无法确定
tableView reloadData之后的状态,如尺寸、contentSize和contentOffset等。

调用reloadData后,回调的执行顺序:

 @IBAction func refresh(_ sender: Any) {
        array.removeLast()
        print("Reload Begin")
        self.tableView.reloadData()
        print("Reload End")
    }
    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        print("numberOfRowsInSection")
        return array.count
    }
    
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        print("cellForRowAt")
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell")
        cell?.textLabel?.text = array[indexPath.row]
        return cell!
    }
    
    override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        print("heightForRow")
        return 44;
    }

//* Log如下 */
// Reload Begin
// numberOfRowsInSection
// Reload End
// cellForRowAt
// heightForRow
// ...

目前有两种解决办法:

//// 1.通过layoutIfNeeded方法,强制重绘并等待完成。
[self.tableView reloadData];
[self.tableView layoutIfNeeded];  
 // 执行后续代码...

//// 2.reloadData方法会在主线程执行,通过GCD使后续操作排队在reloadData后面执行
[self.tableView reloadData];
dispatch_async(dispatch_get_main_queue(), ^{ 
    // 执行后续代码...
});

5. 优雅的在 tableView 任意位置更新数据

当我们实时往UITableView中插入数据并刷新列表的时候,会发现列表是有抖动的。尤其是往当前可见section之前的位置插入数据后立即执行reload时,可见cell会下沉被”挤下去“。下沉的原因就需要理解关于ContentOffset、ContentSize、ContentInset的区别,可以参考这里。首先我们要知道ReloadData的一个特性:

When you call this method, the collection view discards any currently visible items and views and redisplays them. For efficiency, the collection view displays only the items and supplementary views that are visible after reloading the data. If the collection view’s size changes as a result of reloading the data, the collection view adjusts its scrolling offsets accordingly.

也就是说 reloadData 只刷新当前屏幕可见的cells,只会对visibleCells调用
tableView:cellForRowAtIndexPath:。而其contentOffset是保持不变的,所以我们才看到了“抖动现象”,就像之前的cell被挤下去了。

UITableView滚动的原理

图中灰色部分表示iPhone的屏幕,粉红色表示所有数据的布局大小,白色单元是隐藏在屏幕上方的数据,绿色表示目标广告单于格。

假设已经确定数据会在上方插入,解决当前可见 cell 抖动问题的方法如下:

////  1. 以 cell 的粒度,重新锚定位置
//(需要在更新reload之前保存toIndexPath,在reload之后调用scrollToRowAtIndexPath:atScrollPosition:)
NSIndexPath *toIndexPath = [NSIndexPath indexPathForRow:destRow inSection: destSection];
[_tableView scrollToRowAtIndexPath:toIndexPath atScrollPosition:UITableViewScrollPositionTop animated:NO];

////  2. 以像素级力度,重新锚定位置,可以保持界面顺滑或岿然不动
//(需要在更新reload之后计算deltaOffset,并设置_tableView .contentOffset =.....)
- (void)reloadDataArr:(NSArray *)dataArr {
    [_tableView reloadData];
    
    CGFloat deltaOffset = dataArr.count * cellHeight;

    CGPoint contentOffet = [self.tableView contentOffset];
    contentOffet.y += deltaOffset;
    self.tableView .contentOffset = contentOffet;
}

需要注意的是,如果cell高度动态变化的,就需要逐个累计cell高度来计算deltaOffset。

参考文章:
https://www.jianshu.com/p/1865cdf56770
https://www.jianshu.com/p/4ffdd772c864
https://www.jianshu.com/p/4271c6238b41

感谢!

上一篇下一篇

猜你喜欢

热点阅读