如何为twitter撰写分割字符串行?

时间:2012-03-24 09:29:40

标签: iphone objective-c xcode

我正在尝试使用iOS 5+中的twitter编辑器进行推文时将字符串拆分为多行,但无法找到实现方法

我尝试了Click Here

中的所有内容

但没有任何效果,它总是变成单行

是否可以这样做?

更新:

我需要的例子

让我说我想发推文

“你好约翰,欢迎来到我们的网站,我们希望你喜欢它”

而不是像那样发推,我希望看起来像这样

“你好约翰,

欢迎访问我们的网站

我们希望你喜欢它“

1 个答案:

答案 0 :(得分:2)

我猜您的问题只是关于如何创建多行NSString。 答案是:

@"This is the first line.\nThis is the second line."

NSString *tweetString = [NSString stringWithFormat:@"%@\n%@", myFirstLineString, mySecondLineString];

编辑:对于您更新的问题,它将是:

NSString *tweetString = "Hello John,\nWelcome to our website,\nwe hope that you enjoy it"