使用不适用于Swift的pod进行Parse Crash Reporting导入

时间:2014-12-17 18:55:40

标签: swift crash parse-platform reporting

我已通过CocoaPods将Parse SDK更新为1.6.0。 IT工作似乎我能够使用本地数据存储。但是当我尝试启用ParseCrashReporting时     ParseCrashReporting.enable()

但Xcode没有找到ParseCrashReporting。

任何人有同样的问题吗?

谢谢!

3 个答案:

答案 0 :(得分:12)

ParseCrashReporting在其自己的cocoapod规范中。请务必将pod 'ParseCrashReporting'添加到Podfile。然后导入标题为@Lucas指出。

参考:http://cocoapods.org/?q=parsecrashreporting

答案 1 :(得分:7)

我遇到了同样的问题,你应该download the new Parse sdk,它带有以下框架:

  • Bolts.framework
  • Parse.framework
  • ParseCrashReporting.framework
  • ParseFacebookUtils.framework
  • ParseUI.framework

为了工作,您应该将SQLite 3.framework和libstdc ++。6.dylib添加到您的项目中 别忘了添加你的Bridging-Header.h:

#import <ParseCrashReporting/ParseCrashReporting.h>

答案 2 :(得分:0)

我还要指出,当@cojoj提到here时,您应该在Podfile的顶部包含use_frameworks!以利用伞形标头。这blogpost清楚地说明了这一点。在使用CocoaPods和Swift设置Parse SDK时,它对我有用。