0
にログインページが表示されません。 今、どうすればログアウトするまで次回のログインページが表示されないのですか?が、これは正常に動作し、ログインページのための私のコードで迅速
にログインページが表示されません。 今、どうすればログアウトするまで次回のログインページが表示されないのですか?が、これは正常に動作し、ログインページのための私のコードで迅速
token
を保存してください。これはサーバー側から取得します。またはsmtその他のサーバを提供するもの
あなたがlibにopensoure見つけるか、単に保存のためにUserDefaults
を使用することができ、トークンを保存するための初期viewController
if (token.isExist) {
self.window?.rootViewController = viewController
} else {
self.window?.rootViewController = loginViewController
}
を実装することができますAppDelegate
における方法application(_:didFinishLaunchingWithOptions:)
が、あります:
UserDefaults.standard.set(token, forKey: "MyTokenKey")
取得のための
:
削除のためにlet token = UserDefaults.standard.object(forKey: "MyTokenKey")
:
UserDefaults.standard.removeObject(forKey: "MyTokenKey")