MOWebBaseView.h 415 B

12345678910111213141516171819202122232425
  1. //
  2. // MOWebBaseView.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/9/11.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <WebKit/WebKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOWebBaseView : UIView
  11. @property (nonatomic, strong) WKWebView *poWebView;
  12. /** url */
  13. @property (nonatomic, copy) NSURL *webUrl;
  14. /** 请求 */
  15. @property (nonatomic, strong) NSURLRequest *request;
  16. - (void)toLoadTheUrl;
  17. @end
  18. NS_ASSUME_NONNULL_END