NSString in UIWebview

Send string to web view: [webView stringByEvaluatingJavaScriptFromString:@”YOUR_JS_CODE_GOES_HERE”]; Send string from web view to Obj-C: Declare that you implement the UIWebViewDelegate protocol (inside the .h file): @interface MyViewController : UIViewController <UIWebViewDelegate> { // your class members } // declarations of your properties and methods @end In Objective-C (inside the .m file): // right after creating the … Read more