CloudRouterShowView.h 492 B

12345678910111213141516171819
  1. //
  2. // CloudRouterShowView.h
  3. // zhuxun
  4. //
  5. // Created by winsoft on 17/6/28.
  6. //
  7. //
  8. /**
  9. * 上传文件时选择路径view的底部bar
  10. */
  11. #import <UIKit/UIKit.h>
  12. typedef void (^ActionBlock)(NSInteger index);
  13. @interface CloudRouterShowView : UIView
  14. @property (nonatomic , strong) ActionBlock actionBlock;
  15. + (CloudRouterShowView *)cloudRouterShowViewWithItems:(NSArray *)items bkColors:(NSArray *)bkColors;
  16. - (void)setIndexActionBtnEnableWithIndex:(NSInteger)index enable:(BOOL)enable;
  17. @end