Cocoapods无法从Bundle

时间:2018-06-09 05:47:20

标签: ios swift xcode cocoapods

我知道这是一个经常出现的问题,但我找到的所有帖子都已过时......

我只是想在我的cocoapods项目中加载图像到图像。它总是nil

我在MyPodProject/Assets

中复制了我的图片close.png
s.resource_bundle = { 'MyPodProject' => 'MyPodProject/Assets/*.png' }

let view = UIImageView(frame: self.bounds)
let bundle = Bundle(for: Test.self)
let image = UIImage(named: "close", in: bundle, compatibleWith: nil)

关闭图像出现在Xcode中生成的Resources文件夹中.... 我试了三个小时......

1 个答案:

答案 0 :(得分:0)

     a    b    c
0  1.0  4.0  NaN
1  2.0  5.0  NaN
2  3.0  0.0  7.0
3  0.0  6.0  8.0

这是唯一有用的东西......结合我粘贴的代码

 s.resources = 'Hashtags/Assets/**/*.{png,storyboard}'
 s.resource_bundle = { 'Hashtags' => 'Hashtags/Assets/*.png' }