12345678910111213141516171819202122232425262728293031 |
- //
- // ShowKeepNoticeAlert.h
- // smartRhino
- //
- // Created by armin on 2019/11/6.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BSAlertView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef enum ShowKeepNoticeCloseType {
- ShowKeepNoticeCloseType1 = 1, // 放弃
- ShowKeepNoticeCloseType2 = 2, // 关闭
- }ShowKeepNoticeCloseType;
- @interface ShowKeepNoticeAlert : BSAlertView
- /**
- * 初始化
- */
- +(instancetype)initShowKeepNoticeAlertConfirm:(void(^)(void))confirmBlock
- cancle:(void(^)(ShowKeepNoticeCloseType colseType))cancleBlock;
-
- @end
- NS_ASSUME_NONNULL_END
|