• 计算webView的 高度 和自适应屏幕大小


    - (void)webViewDidFinishLoad:(UIWebView *)webView{

        [webView stringByEvaluatingJavaScriptFromString:

         @"var script = document.createElement('script');"

         "script.type = 'text/javascript';"

         "script.text = "function ResizeImages() { "

         "var myimg,oldwidth;"

         "var maxwidth=305;" //缩放系数

         "for(i=0;i <document.images.length;i++){"

         "myimg = document.images[i];"

         "if(myimg.width > maxwidth){"

         "oldwidth = myimg.width;"

         "myimg.width = maxwidth;"

         "}"

         "}"

         "}";"

         "document.getElementsByTagName('head')[0].appendChild(script);"];

        

        [webView stringByEvaluatingJavaScriptFromString:@"ResizeImages();"];

        

        CGRect frame = webView.frame;

        frame.size.height = 1;

        webView.frame = frame;

        CGSize fittingSize = [webView sizeThatFits:CGSizeZero];

        frame.size = fittingSize;

        webView.frame = frame; 

        [self updateScrollViews:frame];

    }

  • 相关阅读:
    没事千万不要升级VirtualBox和Vagrant!
    以太坊开源项目
    以太坊合约第三方库
    Redis dbfilename
    SUSE Redis 开机启动
    SUSE Linux Enterprise Server 12 SP3 安装redis 6.0以上版本
    HTML基础练习
    html基础
    关于css 浮动的例子
    css 实现三角形
  • 原文地址:https://www.cnblogs.com/zhujin/p/4081432.html
Copyright © 2020-2023  润新知