How do I get a newline in iOS?

I’m trying to use a textarea control in an iOS app. I’ve figured out that I need to use Text instead of String, but how do I get a Chr(10) for a newline?

chr(10) = &u0A
chr(13) = &u0D

Thanks!

would this be a bad idea?

dim s as string = endofline dim eol as text = s.totext

String doesn’t exist under iOS

[quote=154303:@Scott Griffitts]would this be a bad idea?

dim s as string = endofline dim eol as text = s.totext[/quote]

EndOfLine does not exist in iOS new framework, but you can make it a constant.