标签: swift firebase firebase-authentication
你好,我尝试创建一个“退出”按钮,但仍然收到错误代码
@IBAction func SignOutButtonTapped(_ sender: Any) { print("Sign Out Button Tapped") try Auth.auth().signOut() }
答案 0 :(得分:0)
您需要do-catch来封装可能引发由try标记的错误的任何块
do-catch
try
do { try Auth.auth().signOut() } catch { print(error) }
请参见Docs
答案 1 :(得分:0)
或者如果您只是想测试您的应用程序。您可以使用try!
try!