UITextField to UIWebView Form?
How can I set up a U开发者_运维百科ITextField, so that when a user inputs data into that UITextField - that data will be input into the UIWebView form and be submitted?
Thanks!
hmm, one option could be, get input in UITextField, and then make HTML like this:
<form>
<input type="text" value=[TextField.text] >
</form>
and load html string in UIWebView.
精彩评论