私はここで似たような質問をいくつか読みましたが、残念ながら、私にはあまり効果がありませんでした。FacebookとGoogleログイン - 競合(Xcode)
私はSwiftを使ったXcodeプロジェクトを持っていますが、現在、私はTwitterを統合しました& Facebookログイン。私もGoogleのログインをしたいと思います。私はこれまでの手順に従ってきましたが、私は2つの問題に到達しました:(AppDelegate.swift中)
didFinishLaunchingWithOptions
。私はすでに返品タイプとしてFacebookを持っていますが、Googleの書類にはreturn true
が必要です。どうやってするか?func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool { return FBSDKApplicationDelegate.sharedInstance().application(application, openURL: url, sourceApplication: sourceApplication, annotation: annotation) // Required By Google?! return GIDSignIn.sharedInstance().handleURL(url, sourceApplication: sourceApplication, annotation: annotation) }
だから、私は必要があります - この1つはまた、Google関連の収益を見込んでいますが、現在はその文書に基づいてFacebookの()を返す
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Google Login var configureError: NSError? GGLContext.sharedInstance().configureWithError(&configureError) assert(configureError == nil, "Error configuring Google services: \(configureError)") //return true -> Expected by Google return FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions) }
2)openURL
FUNC:ここではコードですそれらの処理に役立ちます。前もって感謝します! didFinishLaunchingWithOptions
で
ありがとうございました。 let b = FBSDK ... assignmentの目的を説明してください。 –