链接器 – XCode5 Link Testflight SDK库

前端之家收集整理的这篇文章主要介绍了链接器 – XCode5 Link Testflight SDK库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在我的项目中使用libTestFlight.a库,我已经将其导入“Link Binaries With Libraries”,也在构建阶段,我尝试添加搜索路径”和“标题路径”,我也尝试更改ARCH到标准架构(armv7,armv7s),但还是没有运气,它总是给出这个错误
Undefined symbols for architecture armv7:
  "_deflate",referenced from:
      __tf_remote_log_compress_data in libTestFlight.a(tf_remote_log_io.o)
  "_deflateInit_",referenced from:
      __tf_remote_log_compress_data in libTestFlight.a(tf_remote_log_io.o)
  "_deflateEnd",referenced from:
      __tf_remote_log_compress_data in libTestFlight.a(tf_remote_log_io.o)
ld: symbol(s) not found for architecture armv7
clang: error: linker command Failed with exit code 1 (use -v to see invocation)

解决方法

添加libz.dylib作为链接二进制与库.

建造阶段>链接二进制与库>>按下按钮>搜索libz.dylib并选择它>按“添加”按钮.

原文链接:https://www.f2er.com/iOS/337315.html

猜你在找的iOS相关文章