Passing Objective C Variable To Javascript In Ios
How to pass a ObjectiveC string Variable to a javascript function? I have just started with javascript.. so plz 4give my ignorance...
Solution 1:
NSString * param = @"foo";
NSString * jsCallBack = [NSString stringWithFormat:@"myFunc('%@')",param];
[webView stringByEvaluatingJavaScriptFromString:jsCallBack];
Post a Comment for "Passing Objective C Variable To Javascript In Ios"