在Web视图中显示的文本框中显示文本

时间:2014-01-17 10:35:55

标签: ios iphone objective-c ipad ios5

我正在iOS 7xcode 5.实施我的申请,我使用navigationcontrollerviewcontroller移到另一个viewcontrollers。我有2 ADMSViewController webview,其中包含覆盖整个屏幕的webview。当我点击ADMSBarcodeScanner中的链接时,ADMSBarcodeScanner视图控制器被推到屏幕顶部。扫描后,屏幕顶部会弹出ADMSViewController。现在,当前显示的视图控制器为iSetVinMobile("scanned string is the parameter")。我想将扫描的字符串粘贴到webview内的文本框中。我写了一个javascript函数来粘贴文本框中的字符串。它被称为

{{1}}

请帮帮我。

1 个答案:

答案 0 :(得分:0)

您可以使用以下内容从本机代码调用Javascript函数:

[yourWebViewName stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"iSetVinMobile("%@");",scannedString]];