RQUpdateView.h 533 B

123456789101112131415161718192021
  1. //
  2. // RQUpdateView.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/5/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQUpdateView : UIView
  10. @property (nonatomic, readwrite, strong) QMUIModalPresentationViewController *modalViewController;
  11. @property (nonatomic, readwrite, assign) RQQuestionUpdateViewType questionUpdateViewType;
  12. @property (nonatomic, readwrite, strong) NSString *downloadUrl;
  13. @property (nonatomic, readwrite, strong) NSString *jsDownloadUrl;
  14. + (instancetype)updateView;
  15. @end
  16. NS_ASSUME_NONNULL_END