ShowPhotoCameraAlertView.h 659 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // ShowPhotoCameraAlertView.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/1.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BSAlertView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef enum ShowPhotoCameraType {
  12. ShowPhotoCameraType1 = 1, //Camera
  13. ShowPhotoCameraType2 = 2, // Photo
  14. }ShowPhotoCameraType;
  15. @interface ShowPhotoCameraAlertView : BSAlertView
  16. /**
  17. * 弹出选择照片/相机alert
  18. */
  19. +(instancetype)initShowPhotoCameraAlertViewConfirm:(void(^)(ShowPhotoCameraType type))confirmBlock
  20. cancle:(void(^)(void))cancleBlock;
  21. @end
  22. NS_ASSUME_NONNULL_END