<bdo id='P7num'></bdo><ul id='P7num'></ul>
    <tfoot id='P7num'></tfoot>

    1. <i id='P7num'><tr id='P7num'><dt id='P7num'><q id='P7num'><span id='P7num'><b id='P7num'><form id='P7num'><ins id='P7num'></ins><ul id='P7num'></ul><sub id='P7num'></sub></form><legend id='P7num'></legend><bdo id='P7num'><pre id='P7num'><center id='P7num'></center></pre></bdo></b><th id='P7num'></th></span></q></dt></tr></i><div id='P7num'><tfoot id='P7num'></tfoot><dl id='P7num'><fieldset id='P7num'></fieldset></dl></div>

      1. <legend id='P7num'><style id='P7num'><dir id='P7num'><q id='P7num'></q></dir></style></legend>

        <small id='P7num'></small><noframes id='P7num'>

      2. 如何在 UIWebView 中增加字体大小

        how to increase font size in UIWebView(如何在 UIWebView 中增加字体大小)

            <tbody id='bsf5Z'></tbody>

          <small id='bsf5Z'></small><noframes id='bsf5Z'>

              <tfoot id='bsf5Z'></tfoot>

              1. <i id='bsf5Z'><tr id='bsf5Z'><dt id='bsf5Z'><q id='bsf5Z'><span id='bsf5Z'><b id='bsf5Z'><form id='bsf5Z'><ins id='bsf5Z'></ins><ul id='bsf5Z'></ul><sub id='bsf5Z'></sub></form><legend id='bsf5Z'></legend><bdo id='bsf5Z'><pre id='bsf5Z'><center id='bsf5Z'></center></pre></bdo></b><th id='bsf5Z'></th></span></q></dt></tr></i><div id='bsf5Z'><tfoot id='bsf5Z'></tfoot><dl id='bsf5Z'><fieldset id='bsf5Z'></fieldset></dl></div>
                <legend id='bsf5Z'><style id='bsf5Z'><dir id='bsf5Z'><q id='bsf5Z'></q></dir></style></legend>
                  <bdo id='bsf5Z'></bdo><ul id='bsf5Z'></ul>

                • 本文介绍了如何在 UIWebView 中增加字体大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何增加或减少UIWebview字体大小,不使用scalePageToFit:NO;

                  how to increase or decrease the UIWebview font size, not using scalePageToFit:NO;

                  推荐答案

                  我有 2 个按钮 - A- 和 A+

                  I have 2 buttons - A- and A+

                  @interface
                  NSUInteger textFontSize;
                  
                  - (IBAction)changeTextFontSize:(id)sender
                  {
                      switch ([sender tag]) {
                          case 1: // A-
                              textFontSize = (textFontSize > 50) ? textFontSize -5 : textFontSize;
                              break;
                          case 2: // A+
                              textFontSize = (textFontSize < 160) ? textFontSize +5 : textFontSize;
                              break;
                      }
                  
                      NSString *jsString = [[NSString alloc] initWithFormat:@"document.getElementsByTagName('body')[0].style.webkitTextSizeAdjust= '%d%%'", 
                                            textFontSize];
                      [web stringByEvaluatingJavaScriptFromString:jsString];
                      [jsString release];
                  }
                  

                  这篇关于如何在 UIWebView 中增加字体大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Getting an NSArray of a single attribute from an NSArray(从 NSArray 获取单个属性的 NSArray)
                  ImageIO: lt;ERRORgt; JPEG Corrupt JPEG data: premature end of data segment iphone - how to catch this?(ImageIO:lt;错误gt;JPEG 损坏的 JPEG 数据:iphone 数据段过早结束 - 如何捕捉到这个?)
                  How to get indexPath.row of tableView which is currently being displayed?(如何获取当前正在显示的 tableView 的 indexPath.row?)
                  Xcode iOS organizer submit to app store yields quot;The archive is invalidquot; error(Xcode iOS 管理器提交到应用商店产生“存档无效;错误)
                  MFMessageComposeViewController alloc returns nil(MFMessageComposeViewController alloc 返回 nil)
                  How to add and get the values from .plist in iOS(如何在 iOS 中从 .plist 添加和获取值)
                  <legend id='ECoXo'><style id='ECoXo'><dir id='ECoXo'><q id='ECoXo'></q></dir></style></legend>

                    <tbody id='ECoXo'></tbody>

                  <small id='ECoXo'></small><noframes id='ECoXo'>

                  <i id='ECoXo'><tr id='ECoXo'><dt id='ECoXo'><q id='ECoXo'><span id='ECoXo'><b id='ECoXo'><form id='ECoXo'><ins id='ECoXo'></ins><ul id='ECoXo'></ul><sub id='ECoXo'></sub></form><legend id='ECoXo'></legend><bdo id='ECoXo'><pre id='ECoXo'><center id='ECoXo'></center></pre></bdo></b><th id='ECoXo'></th></span></q></dt></tr></i><div id='ECoXo'><tfoot id='ECoXo'></tfoot><dl id='ECoXo'><fieldset id='ECoXo'></fieldset></dl></div>

                      <tfoot id='ECoXo'></tfoot>
                        • <bdo id='ECoXo'></bdo><ul id='ECoXo'></ul>