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
Getting Text Out of Native iOS Text Input
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Getting Text Out of Native iOS Text Input
Hi Ruaridh,
Welcome to the forum!
Look up "mobileControlGet" specifically for fields
Simon
Welcome to the forum!
Look up "mobileControlGet" specifically for fields
Code: Select all
put mobileControlGet(myTextField, "text") into tText
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Getting Text Out of Native iOS Text Input
Hi Simon, thats a huge help! Thank you so much!