Possible Duplicate:
how to add linebreak in iPhone notification alert message or plain text on SMS
Is it possible to put a <br> in the message sent to the APNS server/devices, so that you get a break in the message? Or is there another way to do it?
In Objective-C you can use
\nto signify a line break.E.g.
Hello\nworld!will output:
Hello
World!