从Parse迁移到Heroku。 我已经更新了我的AppDelegate.swift文件,包括:
let config = ParseClientConfiguration(block: {
(ParseMutableClientConfiguration) -> Void in
ParseMutableClientConfiguration.applicationId = "...";
ParseMutableClientConfiguration.clientKey = "...";
ParseMutableClientConfiguration.server = "...";
我的Podfile:
pod'Parse','1.11.0'
pod'ParseUI'
pod'Bolts'
pod'ParseFacebookUtilsV4','1.9.1'
pod'FBSDKCoreKit'
pod'FBSDKLoginKit'
在线解决方案是将Parse更新为当前版本(1.12.0)。
然而,Parse(1.12.0)和ParseFacebookUtilsV4(1.9.1)目前不能一起工作,所以我必须保持1.11.0才能解析。 参考:https://github.com/ParsePlatform/ParseFacebookUtils-iOS/issues/35
有解决方法吗?