码迷,mamicode.com
首页 > 移动开发 > 详细

IOS NSBundle使用(访问文件夹)

时间:2017-02-28 00:15:08      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:路径   static   code   oftype   named   访问   资源   logs   blog   

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使用(访问文件夹)

标签:路径   static   code   oftype   named   访问   资源   logs   blog   

原文地址:http://www.cnblogs.com/liuwj/p/6476813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!