tags:

views:

139

answers:

1

I've already known that there is an interface in UIWebView for object c to call javascript. And now I have a problem: After the javascript is finished, there are some result in the javascript, and I want to get it out and use it with object c. Is it possible to get the result from javascript?

A: 

UIWebView's stringByEvaluatingJavaScriptFromString: returns the result of running a script.

Ole Begemann
Thanks.I've just realized this.
Void.Tan