My lib | B | A
实际代码将在项目A的运行时几乎自动编译和可用,但我无法编译它,因为项目A没有看到我的库中的头文件.头文件放在Pods / Mylib / Mylib / CustomIDentifIEr目录中(因为s.header_dir =’CustomIDentifIEr’具有导入访问权限,如:#import< CustomIDentifIEr / header.h>).
我不想在项目中指定头文件的直接路径(我不希望用户必须执行额外的 *** 作来安装我的lib).我希望CocoaPods将我的头文件或链接复制到Products /../ include文件夹中,以便它们自动可用.
我该怎么做?最好使用podspec文件.
谢谢你的帮助!
解决方法 看起来它与文件夹路径有关从文档引用:
header_mapPings_dir
A directory from where to preserve the folder structure for the
headers files. If not provIDed the headers files are flattened.Examples:
spec.header_mapPings_dir = ‘src/include’
帮我解决了类似的问题.
s.header_mapPings_dir = 'armadillo-4.200.0/include/' #allows any folders in here to be avail from project. namely the folder of headers,armadillo_bits
http://guides.cocoapods.org/syntax/podspec.html#header_mappings_dir
总结以上是内存溢出为你收集整理的ios – 使用CocoaPods将头文件复制到include文件夹中全部内容,希望文章能够帮你解决ios – 使用CocoaPods将头文件复制到include文件夹中所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)