解决UICollectionView自定义HeadView遮挡滚
2018-07-05 本文已影响15人
那夜倚楼听风雨
由于出现在iOS11中,所以给出解决方法
Headview.h文件
#ifdef __IPHONE_11_0
@interface LQLayer : CALayer
@end
#endif
Headview.m文件
#ifdef __IPHONE_11_0
@implementation LQLayer
- (CGFloat) zPosition {
return 0;
}
@end
#endif
#ifdef __IPHONE_11_0
+ (Class)layerClass {
return [LQLayer class];
}
#endif
日常Bug......