Open wv-y opened 3 years ago
看起来没有问题,去TABCollectionAnimated中的sizeForItemAtIndexPath方法里,打个断点调试一下
看起来没有问题,去TABCollectionAnimated中的sizeForItemAtIndexPath方法里,打个断点调试一下
感谢回复,我再调试看看,请问怎么加微信群,二维码过期了,有问题可以方便交流😂
@tigerAndBull 作者大佬,你好 使用以下写法,在第一次进入页面时骨架屏没有cell1的视图,后续再进入则都可以正常展示,不会再复现这个问题,打出来的包在真机运行也是一样的问题。 两个cell的init方法中我都有添加试图。 真机是iPhone 12, IOS14.7
NSArray *cellClassArray = @[[Cell1 class], [Cell2 class]];
NSArray *sizeArray = @[@(CGSizeMake(Screen_Width, 200)), @(CGSizeMake(Screen_Width, 90))];
TABCollectionAnimated *tabAnimated = [TABCollectionAnimated animatedWithCellClassArray:cellClassArray cellSizeArray:sizeArray animatedCountArray:@[@(1),@(1)]];
tabAnimated.superAnimationType = TABViewSuperAnimationTypeShimmer;
tabAnimated.animatedColor = WKC_HEXRGBCOLOR(0xf6f6f6);
tabAnimated.adjustWithClassBlock = ^(TABComponentManager * _Nonnull manager, Class _Nullable __unsafe_unretained targetClass) {
if (targetClass == [cell1 class]) {
manager.animation(0).reducedHeight_horizontal(-Screen_Width).reducedWidth_vertical(-Screen_Width);
}
if (targetClass == [cell2 class]) {
manager.animation(0).width(100);
manager.animation(1).width(100).reducedHeight_horizontal(8);
}
};
_collectionV.tabAnimated = tabAnimated;
看起来没有问题,去TABCollectionAnimated中的sizeForItemAtIndexPath方法里,打个断点调试一下
感谢回复,我再调试看看,请问怎么加微信群,二维码过期了,有问题可以方便交流😂
用2.6.2试试,不行加wx: _tigerAndBull
看起来没有问题,去TABCollectionAnimated中的sizeForItemAtIndexPath方法里,打个断点调试一下
感谢回复,我再调试看看,请问怎么加微信群,二维码过期了,有问题可以方便交流😂
用2.6.2试试,不行加wx: _tigerAndBull 感谢回复,经过排查发现,这些问题是因为,项目中collectionView的layout是复写UICollectionViewFlowLayout的子类,2.6.0和2.6.2表现一致,直接使用UICollectionViewFlowLayout是没有问题的。
cellSize和cellHeight都有两种形态,一种是属性,一种是通过代理获取。
看起来没有问题,去TABCollectionAnimated中的sizeForItemAtIndexPath方法里,打个断点调试一下
感谢回复,我再调试看看,请问怎么加微信群,二维码过期了,有问题可以方便交流😂
用2.6.2试试,不行加wx: _tigerAndBull 感谢回复,经过排查发现,这些问题是因为,项目中collectionView的layout是复写UICollectionViewFlowLayout的子类,2.6.0和2.6.2表现一致,直接使用UICollectionViewFlowLayout是没有问题的。
重写的目的是什么,可能是重写后某些生命周期变化了,如果要继续追踪的话,需要提供重写了什么
cellSize和cellHeight都有两种形态,一种是属性,一种是通过代理获取。
感谢回复,经过排查发现,这些问题是因为,项目中collectionView的layout是复写UICollectionViewFlowLayout的子类,2.6.0和2.6.2表现一致,直接使用UICollectionViewFlowLayout是没有问题的。
重写的目的是什么,可能是重写后某些生命周期变化了,如果要继续追踪的话,需要提供重写了什么
重写是为了实现多列瀑布流,采用的layout是这个 https://www.jianshu.com/p/ca806664c58a 除了加了些容错,核心的东西是一样的
New Issue Checklist
Issue Info
Issue Description and Steps
懒加载中设置骨架屏
页面开启,加载骨架屏时就执行方法:
在为UItableView设置骨架屏期间不会执行- (CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath, 所以初始化设置的cellHeight不会被覆盖。