WKWebView
2019-02-27 本文已影响0人
风冰武
//导航代理 65行
@property (nullable, nonatomic, weak) id <WKNavigationDelegate> navigationDelegate;
//返回用指定的框架和配置初始化的web视图 85行
//参数1: 框架
//参数2: 配置
//返回: web视图
- (instancetype)initWithFrame:(CGRect)frame configuration:(WKWebViewConfiguration *)configuration;
//导航到请求的URL(就是: 加载URL) 93行
//参数: 指定要导航到的URL请求
//返回: 给定请求的新导航
- (nullable WKNavigation *)loadRequest:(NSURLRequest *)request;
//指示水平滑动手势是否会触发前向列表导航(默认是NO) 241行
@property (nonatomic) BOOL allowsBackForwardNavigationGestures;
```˙