1234567891011121314151617181920 |
- //
- // UIViewController+TZImagePickerController.h
- // Extension
- //
- // Created by CY on 2022/8/24.
- //
- #import <UIKit/UIKit.h>
- #import <TZImagePickerController/TZImagePickerController.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIViewController (TZImagePickerController)
- - (void)showImagePickerWithStyleBlock:(void (^)(TZImagePickerController *imagePicker))styleBlock finishBlock:(void (^)(NSArray<UIImage *> *photos,NSArray *assets,BOOL isSelectOriginalPhoto))finishBlock;
- - (void)showVideoPickerWithStyleBlock:(void (^)(TZImagePickerController *imagePicker))styleBlock finishBlock:(void (^)(UIImage * coverImage, NSString *outputPath, NSString *errorMsg))finishBlock;
- @end
- NS_ASSUME_NONNULL_END
|