gpt4 book ai didi

ios - 如何修复 Cocoapods 中丢失的图像资源?

转载 作者:行者123 更新时间:2023-11-29 01:26:28 25 4
gpt4 key购买 nike

我添加了 use_frameworks!到我的 Podfile,现在 Pod 中缺少一些图像资源 - 当我运行该项目时,这些 Pod 中包含的图像不再出现。我该如何解决这个问题?

最佳答案

当您将 Pod 构建为框架时,图像文件将放在框架中,而不是主包中。 Pod 中的代码在创建 UIImage 对象时需要为框架指定 bundle。

NSBundle* bundle = [NSBundle bundleForClass:[self class]];
UIImage* image = [UIImage imageNamed:@"image.png"
inBundle:bundle
compatibleWithTraitCollection:nil];

关于ios - 如何修复 Cocoapods 中丢失的图像资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33949858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com