如何从xcode项目中的本地文本文件中获取文本

时间:2012-08-23 18:42:49

标签: objective-c xcode4.2

我在支持文件中保存了一个文件。现在我想将该文件中的文本检索到xcode中的文本字段。请帮我解决这个问题。如果可能的话,请发布任何代码。 我使用了以下代码。但我无法访问。

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"iPhone.txt" ofType:@"txt"];    
NSString *textData = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];

NSLog(@"Some text from a file of %@", textData);
NSLog(@"The length of the string is %u",[textData length]);

错误:

  

*由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:' - [UIViewController _loadViewFromNibNamed:bundle:]加载了“FirstInMacViewController”笔尖,但未设置视图插座。   * 首先抛出调用堆栈:

1 个答案:

答案 0 :(得分:1)

该错误与您发布的代码无关。您似乎错误地断开了笔尖的view插座。打开笔尖并使用鼠标右键从文件所有者拖动到顶层视图并连接view插座。