-3

我在支持文件中保存了一个文件。现在我想将该文件中的文本检索到 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”笔尖,但未设置视图出口。*首先抛出调用栈:

4

1 回答 1

1

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

于 2012-08-23T18:48:42.120 回答