iOS 11 下 UICollectionView 的HeaderView 遮挡滚动条

Posted 樊特西style

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 11 下 UICollectionView 的HeaderView 遮挡滚动条相关的知识,希望对你有一定的参考价值。

这个问题在之前的 ios 10 上是没有的,iOS 11 新出之后才出现。在使用了- collectionView: viewForSupplementaryElementOfKind: atIndexPath:的 UICollectionView 页面中,滑动页面的时候滚动条会被 HeaderView 遮挡.

 

#import "CustomCollectionReusableView.h"
#ifdef __IPHONE_11_0
@interface CustomLayer : CALayer
@end
#endif
@interface CustomCollectionReusableView ()
@property (nonatomic, strong) UILabel *showLabel;
/**< 显示控件 */
@end
#ifdef __IPHONE_11_0
@implementation CustomLayer - (CGFloat) zPosition { return 0; }
@end
#endif
@implementation CustomCollectionReusableView
- (void)layoutSubviews {
[super layoutSubviews];
[self _setUpSubViews];
}
- (void)_setUpSubViews {
[self addSubview:self.showLabel];
}
#pragma mark - Lazy
- (UILabel *)showLabel{
if (!_showLabel) {
_showLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 20, 120, self.frame.size.height)];
_showLabel.font = [UIFont systemFontOfSize:13];
_showLabel.textAlignment = NSTextAlignmentLeft;
_showLabel.backgroundColor = [UIColor clearColor];
_showLabel.textColor = [UIColor redColor]; } return _showLabel;
}
#ifdef __IPHONE_11_0
+ (Class)layerClass {
return [CustomLayer class];
}
#endif
@end




以上是关于iOS 11 下 UICollectionView 的HeaderView 遮挡滚动条的主要内容,如果未能解决你的问题,请参考以下文章

iOS 11 UICollectionView顶部出现白色间隔的问题

Swift 3 - iOS 11.2 上的 UICollectionview 问题

iOS:使用约束动画 UICollectionView 垂直扩展?

Swift 3 - iOS 11.2上的UICollectionview问题

第18月第10天 iOS11 uicollectionview

UICollectionView io11 - 顶部插图