| 12345678910111213141516171819202122 |
- //
- // RAPhotoLayoutDelegate.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/30.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #ifndef RAPhotoLayoutDelegate_h
- #define RAPhotoLayoutDelegate_h
- #import <UIKit/UIkit.h>
- @protocol RAPhotoLayoutDelegate <NSObject>
- @required
- - (NSArray *)prepareLayout;
- - (CGFloat)layoutContentHeight;
- @end
- #endif /* RAPhotoLayoutDelegate_h */
|