有没有一种方便的方法来格式化一个相当长的带有段落的字符串(如下所示),\n
以便 textView 也会显示这些段落?
blah
blah
到@"blah\n\nblah"
谢谢!
有没有一种方便的方法来格式化一个相当长的带有段落的字符串(如下所示),\n
以便 textView 也会显示这些段落?
blah
blah
到@"blah\n\nblah"
谢谢!
这是一个简单的例子,假设你有:
在文本文件中写下您想要的任何内容,并将其放在 Xcode 项目中的任何位置(通常从 Xcode 中的“Ressources”下导入),然后在代码中的某个位置(init 方法或操作):
NSString *path = [[NSBundle mainBundle] pathForResource:@"myfile"
ofType:@"txt"];
NSString *content = [NSString stringWithContentsOfFile:path
encoding:NSUTF8StringEncoding
error:NULL];
textView.text = content;
您可以将文本存储在 Bundle 中的 .txt 文件中并使用
[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"youTextFile" ofType:@"txt" inDirectory:@"yourRessourceDirectory"] encoding:NSUTF8StringEncoding error:nil];