| 12345678910111213141516171819202122232425 |
- //
- // MOWebBaseView.h
- // MiMoLive
- //
- // Created by SuperC on 2025/9/11.
- //
- #import <UIKit/UIKit.h>
- #import <WebKit/WebKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOWebBaseView : UIView
- @property (nonatomic, strong) WKWebView *poWebView;
- /** url */
- @property (nonatomic, copy) NSURL *webUrl;
- /** 请求 */
- @property (nonatomic, strong) NSURLRequest *request;
- - (void)toLoadTheUrl;
- @end
- NS_ASSUME_NONNULL_END
|