Search code examples
iphoneiphone-sdk-3.0mfmailcomposeviewcontroller

Entering line breaks in NSString


I need to set mail Body in MFMailComposeViewController to separate some text in number of lines. I am using the following line of code but it isn't working.

[mail setMessageBody:[NSString stringWithFormat:@"Hi I am Interested to buy a vehicle for me Name :%@ %@ \n Contact No. : %@ \n Email : %@\n",txtFirst.text, txtLast.text, txtContact.text, txtEmail.text ] isHTML:YES];

also i tried this

[mail setMessageBody:[NSString stringWithFormat:@"Hi I am Interested to buy a vehicle for me Name :%@ %@ </br> Contact No. : %@ </br> Email : %@</br>",txtFirst.text, txtLast.text, txtContact.text, txtEmail.text ] isHTML:YES];

is there any solution to do it.


Solution

  • Try this

    [mail setMessageBody:
    [NSString stringWithFormat:@"First:%@
                               \r\n Second:%@
                               \r\n Third:%@
                               \r\n Fourth:%@",
    txtFirst.text, txtSecond.text, txtThird.text, txtFourth.text ] isHTML:YES];