WKWebView 捏合放大缩小

2017-12-14  本文已影响45人  梦蕊dream

对于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">
上一篇 下一篇

猜你喜欢

热点阅读