12345678910111213141516171819202122232425 |
- //
- // NYWPViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/7/24.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYWPViewModel : NSObject<WKNavigationDelegate, WKUIDelegate, WKScriptMessageHandler>
- @property (nonatomic, strong, readwrite) WKWebView *wView;
- -(NSDictionary*)getPudict;
- -(void)wkvPL:(NSString *)httpUrl;
- -(void)wwvPLJS:(NSInteger)code;
- @end
- NS_ASSUME_NONNULL_END
|