I am developping an iOS application, witch contain many UIWebview, in one webView the user should input data, i would like to store this data in for example SQlite or Plist. can i have the data user input ( in the Webview) and use it in other parts of the application ( UIViewController). How to do this please ?
I am developping an iOS application, witch contain many UIWebview, in one webView the
Share
If you want to transfer user input in webview(HTML) to UIview (Objective-C), you need to do it in roundabout way. Make use of the function:
See more details in the following post:
How can I call Objective-C methods from JavaScript?