美文网首页
关于Bundle文件简单说明

关于Bundle文件简单说明

作者: ZJ_偶尔上路 | 来源:发表于2017-03-28 14:56 被阅读0次

    bundle文件简单理解就是一个专门放置、管理资源文件一个静态包,不参与项目的编译。

    1、bundle文件的创建:
    右键 -> New File -> iOS-> Resource -> Settings Bundle -> 为这个bundle文件起个名字 ->create -> 将你的资源文件拖进去 (ok);

    2、bundle文件的使用:
    我这里拖进去的是一个adsImage图片资源文件夹

    99BC132D-EFC6-459F-9288-469C49667864.png

    获取图片资源:

    bundle文件路径:
        NSString * bundlePath = [[NSBundle mainBundle] pathForResource:@"AdvertiseImage" ofType:@"bundle"];
    adsImage文件路径:
        NSString * adsImagePath = [bundlePath stringByAppendingPathComponent:@"adsImage"];
    图片资源:
        UIImage *image = [UIImage imageWithContentsOfFile:[adsImagePath stringByAppendingPathComponent:@"ads1.png"]];
    

    就这么简单.....

    相关文章

      网友评论

          本文标题:关于Bundle文件简单说明

          本文链接:https://www.haomeiwen.com/subject/hrmjottx.html