当前位置: 代码迷 >> 综合 >> ios NSBundle 程序包路径
  详细解决方案

ios NSBundle 程序包路径

热度:93   发布时间:2023-12-15 02:22:19.0

- (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


我爱共产党