Page 1 of 1

Getting Text Out of Native iOS Text Input

Posted: Mon Dec 29, 2014 6:20 pm
by ruaridh
Apologies in advance; I am relatively new to LiveCde, so sorry if this is a trivial question!

I have managed to get a native iOS text input into my app (using a mix of the RunRev lesson, and MOBGUI), what I am having difficulties figuring out is how to access the text the user has entered into the field. The code I would normally use with a standard text field, doesn't seem to work.

Any help would be greatly appreciated!
Thanks,
Ruaridh

Re: Getting Text Out of Native iOS Text Input

Posted: Mon Dec 29, 2014 7:02 pm
by Simon
Hi Ruaridh,
Welcome to the forum!

Look up "mobileControlGet" specifically for fields

Code: Select all

put mobileControlGet(myTextField, "text") into tText
Simon

Re: Getting Text Out of Native iOS Text Input

Posted: Mon Dec 29, 2014 9:25 pm
by ruaridh
Hi Simon, thats a huge help! Thank you so much!