IOS NSBundle使用(访问文件夹)
Posted 守望星空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOS NSBundle使用(访问文件夹)相关的知识,希望对你有一定的参考价值。
NSBundle的相关信息
1.一个NSBundle代表一个文件夹,利用NSBundle能访问对应的文件夹
2.利用mainBundle就可以访问软件资源包中的任何资源
3.模拟器应用程序的安装路径:
/Users/aplle/资源库/Application Support/iPhone Simulator/7.1/Applications
代码:访问plist文件
NSString *path=[[NSBundle mainBundle]pathForResource:@"statuses.plist" ofType:nil];
代码 :访问Xib
+(instancetype)cellWithTableView:(UITableView *)tableView{ static NSString *ID=@"tg"; MJtgCell *cell=[tableView dequeueReusableCellWithIdentifier:ID]; if(cell==nil) { //从xib中加载cell cell=[[[NSBundle mainBundle]loadNibNamed:@"MJtgCell" owner:nil options:nil]lastObject]; } return cell; }
以上是关于IOS NSBundle使用(访问文件夹)的主要内容,如果未能解决你的问题,请参考以下文章
使用 [NSBundle mainBundle] pathForResource: ofType:inDirectory: 访问文件
IOS开发-UI学习-NSBundle和NSHomeDirectory的区别
iOS 文件操作:沙盒(SandBox)文件操作(FileManager)程序包(NSBundle)