gpt4 book ai didi

javascript - 在IOS中实现JS功能

转载 作者:行者123 更新时间:2023-11-29 13:00:25 26 4
gpt4 key购买 nike

我在 javascript 文件中有某些验证函数。我想在我的 IOS 应用程序中使用它们。

NSString *path = [[NSBundle mainBundle] pathForResource:@"validate" ofType:@"js"];

NSError* error;

NSString* validate = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:&error];

我在 validate.js 中有一个 function keyDetails()

如何创建该函数的实例并调用它。

最佳答案

这就是你的做法:

NSString *path = [[NSBundle mainBundle] pathForResource:@"validate" ofType:@"js"];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
NSString *result = [webView stringByEvaluatingJavaScriptFromString:@"keyDetails()"];

stringByEvaluatingJavaScriptFromString 的文档是 here .

关于javascript - 在IOS中实现JS功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19908099/

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