Okay, so I have an iphone app that presents the user with a UIWebview of an html page with a form I created. The form has standard stuff like a message box and dropdown boxes. Once the user fills out the form and clicks submit, it saves the information as nsstrings in my program. Okay, no problem there. That all works fine.

However, I also wanna be able to edit this form as well. Once I save all this information the user selected in the form (as strings), is there a way to put it back into an html form using an uiwebview so a user of the app can edit the info later on?? I apologize in advance if I didn't give enough info.

link|improve this question

0% accept rate
Can you show me a sample of saving form data from a UIWebView to nsstrings? – Peter Dec 5 '10 at 9:34
feedback

2 Answers

You can do this with javascript. Just create a javascript snippet to fill in the fields, and execute it using -[UIWebView stringByEvaluatingJavaScriptFromString:].

link|improve this answer
feedback

yea, i have been trying to do this..but just haven't had luck. To pull the info, I do this:

NSString *message = [webView2 stringByEvaluatingJavaScriptFromString: @"document.formNotification.messageArea.value"];

So to fill in the fields, I tried:

[webView2 stringByEvaluatingJavaScriptFromString: @"document.formNotification.messageArea.value = 'whatever'"];

However, that didn't seem to fill it in. Now I don't know that much in terms of JavaScript. I have searched all over to try to figure out how to do things but haven't had much luck yet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.