Page 1 of 1

Multiple lines of text and iOS controls

Posted: Wed Oct 21, 2015 3:38 am
by teacherguy
Is there a way to have an iOS control that will properly display multiple lines of text, rather than turning into one long string?

Re: Multiple lines of text and iOS controls

Posted: Wed Oct 21, 2015 8:12 am
by Dixie
Yes, there is... :-) Use the multi-line Input Contro UI TextView, read about it on page 74 of the iOS release notes ... mmm... read 'iosMultiline' in the dictionary
Multi-line Input control – UITextView
A UITextView control is created using a control type of "multiline". For full details of what the UITextView control is capable of, and background about it see the iOS reference document.The multiline input control allows the editing of multiple lines of text, with the 'return' key ending each line.

Re: Multiple lines of text and iOS controls

Posted: Wed Oct 21, 2015 10:00 pm
by teacherguy
Perfect, thank you so much.