相关疑难解决方法(0)

为什么Xcode 7显示*.tbd而不是*.dylib?

Xcode 7在Target> BuildPhases> Link Binary With Libraries>点击+按钮

当选择要添加的框架时,你找不到*.dylib,你会看到*.tbd.

这是什么原因?

**对于需要dylib的人,请点击此帖

  1. 选择"添加其他"
  2. 进入文件选择窗口后,执行"CMD"+ Shift + G(转到文件夹)并键入/ usr/lib /
  3. 从/ user/lib可以找到*.dylib文件

xcode dylib ios xcode7

133
推荐指数
3
解决办法
4万
查看次数

链接错误与Parse.framework iOS

我尝试在我的项目中导入解析框架.我确定我的项目很受欢迎,但是我找不到任何关于它是否是"电弧敏感"的信息.我的项目是基于弧的.

这是我得到的错误:

Undefined symbols for architecture i386:
  "_SCNetworkReachabilityCreateWithName", referenced from:
      -[PFCommandCache init] in Parse(PFCommandCache.o)
      +[PFInternalUtils(Reachability) isParseReachable] in Parse(PFInternalUtils.o)
  "_SCNetworkReachabilityGetFlags", referenced from:
      ___22-[PFCommandCache init]_block_invoke in Parse(PFCommandCache.o)
      +[PFInternalUtils(Reachability) isParseReachable] in Parse(PFInternalUtils.o)
  "_SCNetworkReachabilityScheduleWithRunLoop", referenced from:
      -[PFCommandCache init] in Parse(PFCommandCache.o)
  "_SCNetworkReachabilitySetCallback", referenced from:
      -[PFCommandCache init] in Parse(PFCommandCache.o)
  "_SCNetworkReachabilityUnscheduleFromRunLoop", referenced from:
      -[PFCommandCache dealloc] in Parse(PFCommandCache.o)
  "_SecItemAdd", referenced from:
      +[PFInternalUtils saveToKeychain:data:] in Parse(PFInternalUtils.o)
  "_SecItemCopyMatching", referenced from:
      +[PFInternalUtils loadFromKeychain:] in Parse(PFInternalUtils.o)
  "_SecItemDelete", referenced from:
      +[PFInternalUtils saveToKeychain:data:] in Parse(PFInternalUtils.o)
      +[PFInternalUtils deleteFromKeychain:] in Parse(PFInternalUtils.o)
  "_UTTypeCopyPreferredTagWithClass", referenced from:
      -[PFFile getMimeType] …
Run Code Online (Sandbox Code Playgroud)

frameworks ios automatic-ref-counting parse-platform

13
推荐指数
2
解决办法
1万
查看次数