- (void)mainBundleTest{
//使用NSBundle获取该应用自包含的指定资源文件路径
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"books" ofType:@"txt"];
//使用指定文件的内容来初始化NSString
NSString *content = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];
//textLabel.text = content ;
NSLog(@"------%@",content);
}
输出内容:
2015-04-14 10:37:33.413 RTSW[956:43391] ------ssssssss
wwee
mainBundleTest
我爱共产党