我是解析新手。在更新cocoapods之前,我的代码运行良好,在更新cocoapods之后,在模拟器或设备上运行应用程序时出现此错误:

dyld: Symbol not found: _OBJC_CLASS_$_ParseCrashReporting
  Referenced from: /Users/.../Library/Developer/CoreSimulator/Devices/AA7147C1-AED6-4E00-BF8B-A4777A1C36CE/data/Containers/Bundle/Application/67206EC3-C724-4260-8520-D24E4439493D/....
  Expected in: flat namespace
 in /Users/.../Library/Developer/CoreSimulator/Devices/AA7147C1-AED6-4E00-BF8B-A4777A1C36CE/data/Containers/Bundle/Application/67206EC3-C724-4260-8520-D24E4439493D/...


我正在使用Swift,iOS版本是8.1

最佳答案

在〜>和版本号(即Podfile中的1.6)之间留出空格后,工作正常。

pod 'ParseCrashReporting', '~> 1.6'

关于ios - dyld:找不到符号:_OBJC_CLASS _ $ _ ParseCrashReporting,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30214041/

10-13 03:28