| 12345678910111213141516171819 |
- //
- // CloudRouterShowView.h
- // zhuxun
- //
- // Created by winsoft on 17/6/28.
- //
- //
- /**
- * 上传文件时选择路径view的底部bar
- */
- #import <UIKit/UIKit.h>
- typedef void (^ActionBlock)(NSInteger index);
- @interface CloudRouterShowView : UIView
- @property (nonatomic , strong) ActionBlock actionBlock;
- + (CloudRouterShowView *)cloudRouterShowViewWithItems:(NSArray *)items bkColors:(NSArray *)bkColors;
- - (void)setIndexActionBtnEnableWithIndex:(NSInteger)index enable:(BOOL)enable;
- @end
|