我正在尝试使用iOS 5+中的twitter编辑器进行推文时将字符串拆分为多行,但无法找到实现方法
我尝试了Click Here
中的所有内容但没有任何效果,它总是变成单行
是否可以这样做?
更新:
我需要的例子
让我说我想发推文
“你好约翰,欢迎来到我们的网站,我们希望你喜欢它”
而不是像那样发推,我希望看起来像这样
“你好约翰,
欢迎访问我们的网站
我们希望你喜欢它“
答案 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"