UICollectionView的ScrollIndicator
2018-03-02 本文已影响21人
玫瑰装甲君
关于UICollectionView的ScrollIndicator被header挡住的问题。
问题如下:
问题图片发现只有iOS11以上的设备才会出现这样的问题,以下是解决方案:
- (void)collectionView:(UICollectionView*)collectionView willDisplaySupplementaryView:(UICollectionReusableView*)view forElementKind:(NSString*)elementKind atIndexPath:(NSIndexPath*)indexPath
{
if(@available(iOS11.0, *)) {
if ([elementKind isEqualToString:UICollectionElementKindSectionHeader]) {
view.layer.zPosition=0;
}
}
}
另外推荐一个写手帐的文艺范app:时光手帐。记录生活点滴神器!
到此为止了。