HXCustomCollectionReusableView.m 451 B

123456789101112131415161718192021222324252627
  1. //
  2. // HXCustomCollectionReusableView.m
  3. // HXPhotoPickerExample
  4. //
  5. // Created by Silence on 2017/11/8.
  6. // Copyright © 2017年 Silence. All rights reserved.
  7. //
  8. #import "HXCustomCollectionReusableView.h"
  9. #ifdef __IPHONE_11_0
  10. @implementation HXCustomLayer
  11. - (CGFloat)zPosition {
  12. return 0;
  13. }
  14. @end
  15. #endif
  16. @implementation HXCustomCollectionReusableView
  17. #ifdef __IPHONE_11_0
  18. + (Class)layerClass {
  19. return [HXCustomLayer class];
  20. }
  21. #endif
  22. @end