• <small id='gEqP7'></small><noframes id='gEqP7'>

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

        • <bdo id='gEqP7'></bdo><ul id='gEqP7'></ul>
      1. <legend id='gEqP7'><style id='gEqP7'><dir id='gEqP7'><q id='gEqP7'></q></dir></style></legend>

        向嵌入式 UIWebView 传递数据和从嵌入式 UIWebView 传递数据

        Passing Data To and From an Embedded UIWebView(向嵌入式 UIWebView 传递数据和从嵌入式 UIWebView 传递数据)

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

              <bdo id='9ch91'></bdo><ul id='9ch91'></ul>

                  <legend id='9ch91'><style id='9ch91'><dir id='9ch91'><q id='9ch91'></q></dir></style></legend>

                    <tbody id='9ch91'></tbody>

                  <tfoot id='9ch91'></tfoot>

                  <small id='9ch91'></small><noframes id='9ch91'>

                  本文介绍了向嵌入式 UIWebView 传递数据和从嵌入式 UIWebView 传递数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我的视图控制器中嵌入了一个 UIWebView,如下所示:

                  I have a UIWebView embedded in my view controller like this:

                  我的 Web 视图 (_graphTotal) 有一个出口,我可以使用以下方法成功加载 test.html 的内容:

                  I have an outlet to my web view (_graphTotal) and I can successfully load the contents of test.html in it using this:

                  <代码>[_graphTotal loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"]isDirectory:NO]]];

                  我现在正在尝试将数据传递到 Web 视图,但没有任何运气.我已经添加了 <UIWebViewDelegate> 这就是我正在尝试的:

                  I'm now trying to pass data to the web view and haven't had any luck. I have added the <UIWebViewDelegate> and here's what I'm trying:

                  NSString *userName = [_graphTotal stringByEvaluatingJavaScriptFromString:@"testFunction()"];
                  NSLog(@"Web response: %@",userName);
                  

                  这是我项目中test.html的内容:

                  <html>
                    <head></head>
                    <body>
                      Testing...
                        <script type="text/javascript">
                          function testFunction() {
                            alert("made it!");
                            return "hi!";
                          }
                          </script>
                    </body>
                  </html>
                  

                  我可以在我的 webView 中看到正在测试...",但我没有看到警报,也没有看到返回的嗨!"字符串.

                  I can see "Testing..." in my webView, but I'm not seeing the alert nor the returned "hi!" string.

                  知道我做错了什么吗?

                  推荐答案

                  问题是你试图在 webview 有机会加载页面之前评估你的 javascript.首先将 <UIWebViewDelegate> 协议引入您的视图控制器:

                  Well the problem is that you tried to evaluate your javascript before the webview had the chance to load the page. First adopt the <UIWebViewDelegate> protocol into your view controller:

                  @interface ViewController : UIViewController <UIWebViewDelegate>
                  

                  然后将 webview 的代理连接到视图控制器,发出请求并最终实现 委托方法.这是在 webview 完成加载时通知您的通知:

                  Then connect the delegate of your webview to your view controller, make the request and finally implement the delegate methods. Here is the one that notifies you when the webview has finished loading:

                  - (void)viewDidLoad
                  {
                      [super viewDidLoad];
                  
                      [self.graphTotal loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"test" ofType:@"html"]isDirectory:NO]]];
                  }
                  
                  - (void)webViewDidFinishLoad:(UIWebView *)webView
                  {
                      NSString *userName = [self.graphTotal stringByEvaluatingJavaScriptFromString:@"testFunction()"];
                      NSLog(@"Web response: %@",userName);
                  }
                  

                  PS:当您以这种方式评估 javascript 时必须注意的限制之一是您的脚本必须在 10 秒内执行.因此,例如,如果您等待超过 10 秒以解除警报,您将收到错误消息(等待 10 秒后返回失败).在文档.

                  PS: One of the limits you must be aware of when you're evaluating javascript this way is that your script must be executed within 10 seconds. So if for example you've waited more than 10 secs to dismiss the alert you would get an error (failed to return after waiting 10 seconds). Find more about the limitations in the docs.

                  这篇关于向嵌入式 UIWebView 传递数据和从嵌入式 UIWebView 传递数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  EAAccessory/EASession teardown during background(EAAccessory/EASession 在后台拆除)
                  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)

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

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

                              <tbody id='X2N04'></tbody>