| 1234567891011121314151617181920212223 |
- //
- // RADetailActionsLayout.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/6/2.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol RADetailActionsLayoutDelegate <NSObject>
- @required
- - (NSArray *)prepareLayout;
- - (CGFloat)layoutContentHeight;
- @end
- @interface RADetailActionsLayout : UICollectionViewLayout
- @property (nonatomic,weak) id<RADetailActionsLayoutDelegate> delegate;
- @end
|