gpt4 book ai didi

ios - 如何在 objective-c 中调用 JavaScript 函数

转载 作者:IT王子 更新时间:2023-10-29 07:57:07 27 4
gpt4 key购买 nike

我是 objective-c 的新程序员。我向 objective-c 添加了一些 html 文件。在这个 html 文件中包含简单的 javascript 函数。我需要通过 objective-c 代码调用该函数。我用谷歌尝试了很多时间。但我找不到真正的方法来做到这一点。 波纹管包含 html 文件:

<!DOCTYPE html>
<html>
<head>
<script>
function myFunction()
{
alert("Hello World!");
}
</script>
</head>

<body>
<button onclick="myFunction()">Try it</button>
</body>
</html>

我这样调用这个函数:它是正确的还是错误的??如果错了,如何做到这一点。请帮忙。

NSString *path;
NSBundle *thisBundle = [NSBundle mainBundle];
path = [thisBundle pathForResource:@"first" ofType:@"html"];
NSURL *instructionsURL = [NSURL fileURLWithPath:path];
[webView loadRequest:[NSURLRequest requestWithURL:instructionsURL]];

NSString * jsCallBack = [NSString stringWithFormat:@"myFunction()"];
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];

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

最佳答案

NSString *path;
NSBundle *thisBundle = [NSBundle mainBundle];
path = [thisBundle pathForResource:@"first" ofType:@"html"];
NSURL *instructionsURL = [NSURL fileURLWithPath:path];
[webView loadRequest:[NSURLRequest requestWithURL:instructionsURL]];

NSString * jsCallBack = [NSString stringWithFormat:@"myFunction()"];
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];

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

如果所有这些代码都从一个地方调用,那么它将无法工作,因为页面加载是异步的,并且带有 JavaScript 代码的页面在那一刻还没有准备好。尝试在 UIWebViewDelegate 回调方法 –webViewDidFinishLoad:

中调用此方法 [webView stringByEvaluatingJavaScriptFromString:@"myFunction()"];

关于ios - 如何在 objective-c 中调用 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14334047/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com