RAPhotoLayoutDelegate.h 394 B

12345678910111213141516171819202122
  1. //
  2. // RAPhotoLayoutDelegate.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/10/30.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #ifndef RAPhotoLayoutDelegate_h
  9. #define RAPhotoLayoutDelegate_h
  10. #import <UIKit/UIkit.h>
  11. @protocol RAPhotoLayoutDelegate <NSObject>
  12. @required
  13. - (NSArray *)prepareLayout;
  14. - (CGFloat)layoutContentHeight;
  15. @end
  16. #endif /* RAPhotoLayoutDelegate_h */