错误:使用未解析的标识符'ParseClientConfiguration'

时间:2016-02-18 02:49:22

标签: ios xcode swift heroku parse-server

从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

有解决方法吗?

0 个答案:

没有答案