Parse.setApplicationId("****", clientKey: "****") {出现错误,显示“预期的声明”...在早期版本的Xcode上没有这个问题
发布于 2015-04-16 09:06:49
你所要做的就是
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Parse.setApplicationId("Your_application_id",
clientKey: "Your_Client_Key")
return true
}并在您的桥接头中导入:
#import <Parse/Parse.h>https://stackoverflow.com/questions/29663405
复制相似问题