| 1234567891011121314151617181920212223242526272829303132 |
- //
- // NewChoiceFileController.h
- // SiBenClient
- //
- // Created by 肖雨 on 2017/9/22.
- // Copyright © 2017年 ShangLv. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- //枚举值不传默认是上传单张照片
- typedef enum {
- NewUploadAlbum = 0, //上传照片
- NewUploadVideo, //上传视屏
- NewUploadOther //上传其他
- } NewUploadVideoAlbumType;
- typedef enum {
- NewSinglePass = 0, //单传
- NewManyPass //多传
- } NewUploadCountType;
- @interface NewChoiceFileController : UIViewController
- @property(nonatomic,assign)NewUploadVideoAlbumType uploadVideoAlbumType;
- @property(nonatomic,assign)NewUploadCountType uploadCountType;
- - (void)choiceFile:(UIViewController *)controller type:(NSString *)type action:(void(^)(NSString *imagePath))action;
- @end
|