我正在尝试自定义FUIAuthPickerViewController
,以便可以使用FirebaseUI身份验证将自定义身份验证屏幕作为登录屏幕
***由于未捕获的异常“NSGenericException”而终止应用程序,原因:“此编码器要求从initWithCoder返回被替换的对象:”
我知道有一个错误会阻止FUIAuthPickerViewController
成为根视图控制器,因此在Main.Storyboard
中,我添加了一个空白视图控制器,并将该类设置为CustomLoginViewController
的子类,该子类继承了FUIAuthPickerViewController
想知道是否有人可以指出我正确的方向?不知道为什么我得到这个错误。
谢谢
import UIKit
import FirebaseAuth
import FirebaseAuthUI
class CustomLoginViewController: FUIAuthPickerViewController {
override init(nibName: String?, bundle: Bundle?, authUI: FUIAuth) {
super.init(nibName: "FUIAuthPickerViewController", bundle: bundle, authUI: authUI)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
override func viewDidLoad() {
super.viewDidLoad()
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
if !isUserSignedIn() {
showLoginView()
}
}
private func isUserSignedIn() -> Bool {
guard FIRAuth.auth()?.currentUser != nil else { return false }
return true
}
private func showLoginView() {
if let authVC = FUIAuth.defaultAuthUI()?.authViewController() {
present(authVC, animated: true, completion: nil)
}
}
这是我的AppDelegate.swift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate, FUIAuthDelegate {
var window: UIWindow?
var storyboard: UIStoryboard?
var authUI: FUIAuth?
let providers: [FUIAuthProvider] = [
FUIGoogleAuth(),
FUIFacebookAuth()
]
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
FIRApp.configure()
authUI = FUIAuth.defaultAuthUI()
authUI?.delegate = self
authUI?.providers = providers
return true
}
func authUI(_ authUI: FUIAuth, didSignInWith user: FIRUser?, error: Error?) {
print("SIGNED IN")
}
public func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -> Bool {
let handled = SDKApplicationDelegate.shared.application(app, open: url, options: options)
return handled || GIDSignIn.sharedInstance().handle(url, sourceApplication: options[UIApplicationOpenURLOptionsKey.sourceApplication] as? String, annotation: options[UIApplicationOpenURLOptionsKey.annotation])
}
func authPickerViewController(forAuthUI authUI: FUIAuth) -> FUIAuthPickerViewController {
return CustomLoginViewController(authUI: authUI)
}
这是完整的调用堆栈
*** Terminating app due to uncaught exception 'NSGenericException', reason: 'This coder requires that replaced objects be returned from initWithCoder:'
*** First throw call stack: ( 0 CoreFoundation 0x00000001065c1d4b __exceptionPreprocess + 171 1 libobjc.A.dylib 0x000000010602321e objc_exception_throw + 48 2 CoreFoundation 0x000000010662b2b5 +[NSException raise:format:] + 197 3 UIKit 0x0000000104dda1eb UINibDecoderDecodeObjectForValue + 758 4 UIKit 0x0000000104dd9eee -[UINibDecoder decodeObjectForKey:] + 98 5 UIKit 0x0000000104be5d14 -[UIRuntimeConnection initWithCoder:] + 178 6 UIKit 0x0000000104dda1a1 UINibDecoderDecodeObjectForValue + 684 7 UIKit 0x0000000104dda357 UINibDecoderDecodeObjectForValue + 1122 8 UIKit 0x0000000104dd9eee -[UINibDecoder decodeObjectForKey:] + 98 9 UIKit 0x0000000104be4eb8 -[UINib instantiateWithOwner:options:] + 1249 10 UIKit 0x0000000104fa4f7b -[UIStoryboard instantiateViewControllerWithIdentifier:] + 181 11 UIKit 0x00000001047d747d -[UIApplication
_loadMainStoryboardFileNamed:bundle:] + 111 12 UIKit 0x00000001047d7947 -[UIApplication _loadMainInterfaceFile] + 260 13 UIKit 0x00000001047d5fa8 -[UIApplication
_runWithMainScene:transitionContext:completion:] + 1406 14 UIKit 0x00000001047d326d -[UIApplication workspaceDidEndTransaction:] + 188 15 FrontBoardServices 0x000000010925a6cb
__FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 24 16 FrontBoardServices 0x000000010925a544
-[FBSSerialQueue _performNext] + 189 17 FrontBoardServices 0x000000010925a8cd -[FBSSerialQueue _performNextFromRunLoopSource] + 45 18 CoreFoundation 0x0000000106566761
__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 19 CoreFoundation 0x000000010654b98c
__CFRunLoopDoSources0 + 556 20 CoreFoundation 0x000000010654ae76 __CFRunLoopRun + 918 21 CoreFoundation 0x000000010654a884 CFRunLoopRunSpecific + 420 22 UIKit 0x00000001047d1aea -[UIApplication _run] + 434 23 UIKit 0x00000001047d7c68 UIApplicationMain + 159 24 Surfshop 0x0000000100f54cbf main + 111 25 libdyld.dylib 0x00000001073e968d start + 1 26 ??? 0x0000000000000001 0x0 + 1 ) libc++abi.dylib: terminating with uncaught exception of type NSException
最佳答案
通过创建UIViewController的新子类MyViewController并将故事板中的class属性设置为MyViewController而不是CustomLoginViewController来解决此问题