对不起,如果这是初级的。把我的头撞到它上面。我的应用在 iOS5.1 及更低版本中运行良好,但无法访问我在 ios6 的 Supporting Files 文件夹中的 .txt 文件。它总是返回“null”。我对此进行了研究并检查了捆绑包,一切都在那里。该表列出了大约 8 位发言者。单击时,它应该拉取从 .txt 文件加载的 DetailView。
...[代码]...
else if (self.makeLabel.text == @"Peter Sengenberger") {
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"sengenberger" ofType:@"txt"];
if (filePath) {
NSString *myText1 = [NSString stringWithContentsOfFile:filePath
encoding:NSUTF8StringEncoding error:nil];
if (myText1) {
textData= [[UITextView alloc] initWithFrame:CGRectMake(5,0, 280,200)]; //size.height-30 )];
textData.text = myText1;
[textData setFont:[UIFont systemFontOfSize:14]];
[textData setBackgroundColor:[UIColor clearColor]];
[textData setTextColor:[UIColor blackColor]];
textData.editable = NO;
textData.dataDetectorTypes = UIDataDetectorTypeLink;
[textScroll addSubview:textData];
}
}
} // end if
谢谢你的帮助!