12345678910111213141516171819202122 |
- //
- // SLShotViewController.h
- // DarkMode
- //
- // Created by wsl on 2019/9/18.
- // Copyright © 2019 wsl. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^TakePhotoBlock)(UIImage * _Nullable image);
- /// 拍摄视图控制器
- @interface SLShotViewController : UIViewController
- @property (nonatomic, strong) TakePhotoBlock takePhotoBlock;
- @property (nonatomic, assign) BOOL isCheckBody;
- - (void)initTakePhotoBlock:(TakePhotoBlock)block;
- @end
- NS_ASSUME_NONNULL_END
|