123456789101112131415161718192021222324252627 |
- //
- // HXCustomCollectionReusableView.m
- // HXPhotoPickerExample
- //
- // Created by Silence on 2017/11/8.
- // Copyright © 2017年 Silence. All rights reserved.
- //
- #import "HXCustomCollectionReusableView.h"
- #ifdef __IPHONE_11_0
- @implementation HXCustomLayer
- - (CGFloat)zPosition {
- return 0;
- }
- @end
- #endif
- @implementation HXCustomCollectionReusableView
- #ifdef __IPHONE_11_0
- + (Class)layerClass {
- return [HXCustomLayer class];
- }
- #endif
- @end
|