NewChoiceFileController.h 822 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // NewChoiceFileController.h
  3. // SiBenClient
  4. //
  5. // Created by 肖雨 on 2017/9/22.
  6. // Copyright © 2017年 ShangLv. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. //枚举值不传默认是上传单张照片
  10. typedef enum {
  11. NewUploadAlbum = 0, //上传照片
  12. NewUploadVideo, //上传视屏
  13. NewUploadOther //上传其他
  14. } NewUploadVideoAlbumType;
  15. typedef enum {
  16. NewSinglePass = 0, //单传
  17. NewManyPass //多传
  18. } NewUploadCountType;
  19. @interface NewChoiceFileController : UIViewController
  20. @property(nonatomic,assign)NewUploadVideoAlbumType uploadVideoAlbumType;
  21. @property(nonatomic,assign)NewUploadCountType uploadCountType;
  22. - (void)choiceFile:(UIViewController *)controller type:(NSString *)type action:(void(^)(NSString *imagePath))action;
  23. @end