// // ShowPhotoCameraAlertView.h // smartRhino // // Created by armin on 2019/11/1. // Copyright © 2019 tederen. All rights reserved. // #import #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