import UIKit
import CoreData
import Firebase
import FBSDKCoreKit
import FirebaseMessaging
import UserNotifications
私はCocoapodsを使用してFirebaseをインストールし、Xcodeの8に細かい仕事をしていた8ベータ4にXcodeでアプリとFacebookのログインをFacebookのログインを実装しました私がXcode 8.1ベータ版にアップデートした後、Facebookのログインはいつものようにログインページにnot being redirecting automatically
となりました。ログによると実装:OpenURLの:sourceApplication:注釈:(Xcodeの8.1)には見られない
:誰かが正しい方法で私を指示だろう
func application(_ application: UIApplication, open url: URL, sourceApplication: String?, annotation: AnyObject) -> Bool {
print("Handler Called")
let handled = FBSDKApplicationDelegate.sharedInstance().application(application, open: url, sourceApplication: sourceApplication, annotation: annotation)
// Add any custom logic here.
return handled
}
:
FIRAnalytics/WARNING> Implementation of application:openURL:sourceApplication:annotation: not found. Please add the handler into your App Delegate. Class: pushlite.AppDelegate
また、私は以下のように呼び出されていないのOpenURLを使用してアプリケーションの機能を見つけましたか?前もって感謝します。
https://developer.apple.com/reference/uikit/uiapplicationdelegate/1623112-application –
ありがとうございました! – aznelite89