Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要创建一个静态库,但是在向其中添加图像和 plist 时遇到了问题。
有没有办法做到这一点?我发现了一些像这样的链接,但它对我没有帮助,因为无法理解它。
请帮忙
如果您首先为您的库创建一个cocoapod并在您的 .podspec 中使用它,您可以包含非传统库资源,如图像或plist:
s.resources = 'LibraryName/**/*.{png,plist,xib,and,so,on}'
然后,使用您的 cocoapod 的客户端项目将包含您的资源。