RADetailActionsLayout.h 434 B

1234567891011121314151617181920212223
  1. //
  2. // RADetailActionsLayout.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/2.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol RADetailActionsLayoutDelegate <NSObject>
  10. @required
  11. - (NSArray *)prepareLayout;
  12. - (CGFloat)layoutContentHeight;
  13. @end
  14. @interface RADetailActionsLayout : UICollectionViewLayout
  15. @property (nonatomic,weak) id<RADetailActionsLayoutDelegate> delegate;
  16. @end