美文网首页
cocoapods 资源管理

cocoapods 资源管理

作者: zh_19 | 来源:发表于2018-12-11 11:20 被阅读7次

    resource_bundles

    spec.resource_bundles = {
      'MyLibrary' => ['Resources/*.png'],
      'OtherResources' => ['OtherResources/*.png']
    }
    

    resource_bundles显式地做了 bundle 层面的分组
    上面的写法意思是在你的framework下生成MyLibrary.bundleOtherResources.bundle

    1. 使用了Resources/**/*的写法 导致Resources下的目录和文件 递归的被copy到Resources目录下 造成资源的重复

    以下是常用方式

    spec.resource_bundles = {
      'MyLibrary' => ['Resources/source'], // Resources/source文件夹下的所有内容包括子文件夹
      'MyLibrary1' => ['Resources/{source,source2}'], // Resources/source和Resources/source1文件夹下的所有内容包括子文件夹
      'MyLibrary2' => ['Resources/**/*.{png,xib}'], // Resources/source文件夹下的所有.png结尾的图片和xib文件
      
      'OtherResources' => ['OtherResources/**/*.png'] // 递归OtherResources文件夹下的所有以.png结尾的图片
    }
    

    以上方式会生成多个.bundle文件 当然也可以一个.bundle

    spec.resource_bundles = {
      'MyLibrary' => [''Resources/*.{png,xib}', 'Resources/source'], // Resources/source文件夹下的所有内容包括子文件夹 和 Resources文件夹下的所有以.png结尾的图片
    }
    

    访问bundle

    由于 iOS 8 Dynamic Frameworks 特性的引入,CocoaPods 能帮你打包 framework 了
    0.36 版的 release note很详细地说明了加入 framework 特性所带来的变化。一个显著区别就是当你的 pod 库以 framework 形式被使用时,你的资源不是被拷贝到 mainBundle 下,而是被放到 pod 的最终产物—— framework 里。此时,你必须保证自己在访问这个 framework 的 bundle,而不是 client target 的。

    上面这段代码可以返回某个 class 对应的 bundle 对象。具体的,

    [NSBundle bundleForClass:<#ClassFromPodspec#>]
    
    • 如果你的 pod 以 framework 形式被链接,那么返回这个 framework 的 bundle 即 framework 的 bundle 根目录。
    • 如果以静态库(.a)的形式被链接,那么返回 client target 的 bundle,即 mainBundle。
    NSBundle *bundle = [NSBundle bundleForClass:[self class]];
        return [bundle URLForResource:@"MyLibrary" withExtension:@"bundle"];
    

    先拿到最外面的 bundle。 对 framework 链接方式来说就是 framework 的 bundle 根目录,对静态库链接方式来说就是 target client 的 main bundle,然后再去找下面名为 MyLibrary 的 bundle 对象。
    如果想拿到xxx.bundle里的对象 比如 xxx.bundle/source/main.jsbundle

    [[NSBundle bundleForClass:[self class]] URLForResource:@"main" withExtension:@"jsbundle" subdirectory:@"xxx.bundle/source"];
    

    图片资源

    1. 访问主工程里的图片 如下方式即可
    [UIImage imageNamed:name] 
    

    这种方式 是否可访问main.bundle里文件夹下的图片 ?

    1. 访问framework里bundle或某个bundle的图片资源 如下方式即可
    [UIImage imageNamed:name inBundle:bundle compatibleWithTraitCollection:nil]
    

    注意:+ imageNamed:inBundle:compatibleWithTraitCollection: 这个方法 iOS 8 才加入的,之前可以如下

    [UIImage imageWithContentsOfFile:[bundle pathForResource:name ofType:@"png"]];
    

    引用

    给 Pod 添加资源文件

    相关文章

      网友评论

          本文标题:cocoapods 资源管理

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