こちらの記事を参考にして、
apple認証の実装を行いました。
一通り、ログインまでの処理は正常に行えております。
■試したいこと
1.ユーザーがアプリを起動しapple認証でログインする
2.ログイン状態でアプリをバックグラウンドにしてホーム画面の「設定」でサインアウトする
3.バックグラウンドのアプリを再度開いたときに認証処理を再度実行したい。
■現時点
1.成功
2.成功
3.認証処理が呼ばれず認証後に表示されるはずのメイン画面が表示される。
バックグラウンドから復帰したときに、addCredentialObserverメソッド
が呼ばれるだろうと思ったのですが、
呼ばれていないみたいです。
ちなみに、1の後にアプリをバックグラウンド状態ではなく、一度終了させてからサインアウトして立ち上げると認証処理は実行されます。
ですが、ユーザー側の操作として■試したいことに記載した動きは必ず出てくるものだと思うので修正したいです。
なぜ期待通りに動作しないのかご指摘いただきたいです。
AppDelegate
import UIKit import NCMB import AuthenticationServices @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. // APIキー let applicationKey = "~~~" let clientKey = "~~~" // APIキーの設定とSDK初期化 NCMB.initialize(applicationKey: applicationKey, clientKey: clientKey); // on the initial view controller or somewhere else, check the userdefaults if let userID = UserDefaults.standard.string(forKey: "userID") { // move to main view print("以前にログイン済み") print(userID) self.handleASCredential(userId: userID) }else{ goLoginViewConroller() } return true } //Appleのサインイン状態の確認 private func handleASCredential(userId:String) { let appleIDProvider = ASAuthorizationAppleIDProvider() appleIDProvider.getCredentialState(forUserID: userId) { (credentialState, error) in switch credentialState { case .authorized: print("user remain logged in, proceed to another view") //self.performSegue(withIdentifier: "LoginToUserSegue", sender: nil) case .revoked: print("user logged in before but revoked") self.goLoginViewConroller() case .notFound: print("user haven't log in before") self.goLoginViewConroller() default: print("unknown state") self.goLoginViewConroller() } } } //サインイン状態を監視する private func addCredentialObserver() { let userID = UserDefaults.standard.string(forKey: "userID") let center = NotificationCenter.default let name = ASAuthorizationAppleIDProvider.credentialRevokedNotification let _ = center.addObserver(forName: name, object: nil, queue: nil) { (Notification) in // サインアウトして、再度サインインフローを表示するなど self.handleASCredential(userId: userID!) } } //ログインコントローラーに遷移 func goLoginViewConroller(){ DispatchQueue.main.async { //画面遷移させたい部分に以下の処理を記述 // windowを生成 self.window = UIWindow(frame: UIScreen.main.bounds) // Storyboardを指定 let storyboard = UIStoryboard(name: "Main", bundle: nil) // Viewcontrollerを指定 let loginViewController = storyboard.instantiateViewController(withIdentifier:"login") // rootViewControllerに入れる self.window?.rootViewController = loginViewController // 表示 self.window?.makeKeyAndVisible() } } }
環境
Xcode: Version 11.3.1 (11C504)
実機 : iPhone7 Version 13.3.1
あなたの回答
tips
プレビュー