内容简介:版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kmyhy/article/details/82991408
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/kmyhy/article/details/82991408
创建 Framework 工程
- 新建 Cocoa Touch Framework
- 编写 Podfile
- pod install 安装第三方依赖
- 打开 .xcworkspace
- 添加要公开的头文件到 Build Phases / Headers / Public 下
- command+B,编译 framework
创建测试工程
- 在静态库的工作空间中,新建一个 Target,选择 Single view applictation,作为测试工程
- 选择这个 Target,在 Build Phases 中,在 Target Dependencies 下添加已经编译好的 framework 作为依赖
- 在测试工程的 General / Linked Frameworks and Librarys 中添加这个 framework
- 在测试工程中编写调用代码,进行调试
常见错误:
- dyld: Library not loaded: @rpath……Reason: image not found
将 framework 改为静态库,mach-o type 设为 Static Library,然后重新编译 framework
-
编译错误:找不到第三方 cocoapods 库的头文件
修改 Podfile 文件,在测试工程的 target 下增加必要的 pod。
如果 framework 和测试工程的 pod 相同,也可以用 .each 循环:
targets = ['YLYIndoorNavigation','YLYIndoorNavigationDemo'] targets.each do |t| target t do pod 'AFNetworking' pod 'FDFullscreenPopGesture', '~> 1.1' ... ... end end
然后 pod install。
-
编译出错:Undefined symbols for architecture i386:
“___gxx_personality_v0”, referenced from:
在工程中添加添加 libstdc++.dylib 即可。
-
Archive 时报错:ld: library not found for -lAFNetworking
在 Link Binary with Libraries 中,添加相关 pod 库(比如libAFNetworking.a 等)。
-
Archive 出错:bitcode bundle could not be generated because ‘xxxx’ was built without full bitcode.
将 Target 的 Enable Bitcode 设置为 NO。
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- c++ 单元测试编译时错误
- 光之翼 Java 通用代码生成器 1.0.0 Beta 2 版已公布,修复编译错和编译警告,所有示例通过测试
- Xcode 编译疾如风系列(二):并行编译
- 编写 MSBuild 内联编译任务(Task)用于获取当前编译环境下的所有编译目标(Target)
- 使用 Visual Studio 编译时,让错误一开始发生时就停止编译(以便及早排查编译错误节省时间)
- Go编译缓存导致C文件修改后未重新编译
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。