12345678910111213141516171819202122 |
- //
- // SLEditImageController.h
- // DarkMode
- //
- // Created by wsl on 2019/10/31.
- // Copyright © 2019 wsl. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^EditPhotoBlock)(UIImage *editImage);
- @interface SLEditImageController : UIViewController
- @property (nonatomic, strong) UIImage *image; //当前拍摄的照片
- @property (nonatomic, strong) EditPhotoBlock editPhotoBlock;
- @property (nonatomic, assign) BOOL isCheckBody;
- - (void)initEditPhotoBlock:(EditPhotoBlock)block;
- @end
- NS_ASSUME_NONNULL_END
|