iphone - 向 UIWebView 文本框添加文本
<p><p>如何在我的 iOS 应用程序中将 UITextField 中的一些文本以物理方式放入 UIWebView 的表单中?也许可以调用一个javascript字符串来输入文本?</p>
<p>谢谢!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>就像 Matt H 建议的那样,您需要注入(inject)您的 javascript。所以这个问题基本上有两个部分。第一,你有你的 Objective-C 。</p>
<pre><code> NSString *username = @"Fred";
NSString *password = @"pAssw0rd";
NSString *jsCallBack = ;
;
</code></pre>
<p>然后你将拥有你的 javascript 函数,我把我的放在一个 .js 文件中,我的 webview 页面链接到该文件。 </p>
<pre><code>updateWebForm(username,password)
{
//here is where you will assign whatever html/javascript needed for your form.
}
</code></pre></p>
<p style="font-size: 20px;">关于iphone - 向 UIWebView 文本框添加文本,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/7840206/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/7840206/
</a>
</p>
页:
[1]