美文网首页
WKWebView 捏合放大缩小

WKWebView 捏合放大缩小

作者: 梦蕊dream | 来源:发表于2017-12-14 13:42 被阅读45次

对于WKWebView 禁止手势缩放就不多赘述了

注意:

WKWebView 在手机上不支持

UIWebView 进行缩放

    UIWebView *web = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, ScreenWidth, ScreenHeight)];
    web.backgroundColor = [UIColor whiteColor];
    web.scalesPageToFit = YES;
    web.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
    web.multipleTouchEnabled = YES;
    web.userInteractionEnabled = YES;
    web.scrollView.showsHorizontalScrollIndicator = NO;
    web.scrollView.showsVerticalScrollIndicator = NO;
    [web loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"URL 地址"]]];
    [self.view addSubview:web];

HTML 页面需要

  • 不要添加如下代码
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  • 如下代码是可以的
<meta charset="UTF-8">

相关文章

网友评论

      本文标题:WKWebView 捏合放大缩小

      本文链接:https://www.haomeiwen.com/subject/bkckwxtx.html