【iOS】解决UITableViewCell嵌套UICollectionView重用问题

是不是重用的时候,CollectionView的contentOffset会错乱呢?哈哈哈,现在我就告诉你解决办法
cell的model里新增属性:

/**collectionView偏移位置*/
@property (nonatomic, assign) CGFloat collectionViewOffsetX;

在cell.m文件里面,成为collectionView的代理,用model的偏移属性记录偏移的x

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
    CGFloat horizontalOffset = scrollView.contentOffset.x;
    self.model.collectionViewOffsetX  = horizontalOffset;
}

setModel赋值contentOffset

- (void)setModel:(TVFristListModel *)model {
    
    _model = model;
    
    [_collectionView setContentOffset:CGPointMake(model.collectionViewOffsetX, 0)];
}

搞定~

你可能感兴趣的:(【iOS】解决UITableViewCell嵌套UICollectionView重用问题)