1234567891011121314151617181920212223242526272829 |
- //
- // ShowPhotoCameraAlertView.h
- // smartRhino
- //
- // Created by armin on 2019/11/1.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BSAlertView.h"
- NS_ASSUME_NONNULL_BEGIN
-
- typedef enum ShowPhotoCameraType {
- ShowPhotoCameraType1 = 1, //Camera
- ShowPhotoCameraType2 = 2, // Photo
- }ShowPhotoCameraType;
- @interface ShowPhotoCameraAlertView : BSAlertView
- /**
- * 弹出选择照片/相机alert
- */
- +(instancetype)initShowPhotoCameraAlertViewConfirm:(void(^)(ShowPhotoCameraType type))confirmBlock
- cancle:(void(^)(void))cancleBlock;
- @end
- NS_ASSUME_NONNULL_END
|