字符串变量的间距

时间:2018-09-21 07:02:05

标签: ios swift mfmailcomposeviewcontroller

我想在setMessageBody

中留空格
mailComposerVC.setMessageBody("Text Text2", isHTML: false)

我得到的输出

  

文字Text2

预期输出:

  

文字

     

Text2

有什么想法吗?

2 个答案:

答案 0 :(得分:2)

mailComposerVC.setMessageBody("Text Text2", isHTML: false)

isHTML设置为false的情况下,使用"Text\nText2"

isHTML设置为true,然后使用"Text<br />Text2"

答案 1 :(得分:1)

mailComposerVC.setMessageBody("Hello World \nThis is a new line", isHTML: false)

尝试这个

使用\ n换行

查看下面的图像enter image description here