1234567891011121314151617181920212223242526 |
- //
- // YMVersionUpdatePopupView.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMBaseView.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^VersionUpdateButtonBlock)(BOOL isConfirm);
- @interface YMVersionUpdatePopupView : YMBaseView
- /** 按钮回调 isConfirm 确认按钮点击为YES 取消按钮为NO*/
- @property (nonatomic, copy) VersionUpdateButtonBlock buttonBlock;
- /**
- 配置提示内容
- @param tipsStr 提示内容
- */
- - (void)configutationWithTips:(NSString*)tipsStr;
- @end
- NS_ASSUME_NONNULL_END
|