这是我的ios代码
webView = [[UIWebView alloc] init];
webView.delegate = self;
[webView loadHTMLString:@"<script type=\"text/javascript\" src=\"myFile.js\"></script>" baseURL:[NSURL fileURLWithPath:[NSBundle mainBundle].resourcePath]];
NSString* result =(NSString*)[webView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"myFunction(%d,%d,%d)", num1,num2,num3]];
NSLog(@"RESULT1 : %@", result);
这是 myFile.js
function myFunction(a,b,c)
{
return a*b*c;
}
我在结果字符串中没有得到任何东西。我错了吗??