123456789101112131415161718192021 |
- //
- // RQUpdateView.h
- // SDJK
- //
- // Created by 张嵘 on 2022/5/19.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQUpdateView : UIView
- @property (nonatomic, readwrite, strong) QMUIModalPresentationViewController *modalViewController;
- @property (nonatomic, readwrite, assign) RQQuestionUpdateViewType questionUpdateViewType;
- @property (nonatomic, readwrite, strong) NSString *downloadUrl;
- @property (nonatomic, readwrite, strong) NSString *jsDownloadUrl;
- + (instancetype)updateView;
- @end
- NS_ASSUME_NONNULL_END
|