YMVersionUpdatePopupView.h 565 B

1234567891011121314151617181920212223242526
  1. //
  2. // YMVersionUpdatePopupView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/3/21.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^VersionUpdateButtonBlock)(BOOL isConfirm);
  11. @interface YMVersionUpdatePopupView : YMBaseView
  12. /** 按钮回调 isConfirm 确认按钮点击为YES 取消按钮为NO*/
  13. @property (nonatomic, copy) VersionUpdateButtonBlock buttonBlock;
  14. /**
  15. 配置提示内容
  16. @param tipsStr 提示内容
  17. */
  18. - (void)configutationWithTips:(NSString*)tipsStr;
  19. @end
  20. NS_ASSUME_NONNULL_END