ShowKeepNoticeAlert.h 652 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // ShowKeepNoticeAlert.h
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/6.
  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 ShowKeepNoticeCloseType {
  12. ShowKeepNoticeCloseType1 = 1, // 放弃
  13. ShowKeepNoticeCloseType2 = 2, // 关闭
  14. }ShowKeepNoticeCloseType;
  15. @interface ShowKeepNoticeAlert : BSAlertView
  16. /**
  17. * 初始化
  18. */
  19. +(instancetype)initShowKeepNoticeAlertConfirm:(void(^)(void))confirmBlock
  20. cancle:(void(^)(ShowKeepNoticeCloseType colseType))cancleBlock;
  21. @end
  22. NS_ASSUME_NONNULL_END