当用户离开并重新进入应用程序时保持警报视图处于活动状态而不终止它
Keeping alert view active when the user leaves and re-enters the app without killing it
我有一个警报视图,当用户按下注销按钮时,他们可以选择注销或取消,但是如果我离开应用程序并返回(不终止应用程序),则警报视图处于活动状态警报视图消失,但我希望它仍然处于活动状态,因为用户尚未选择取消或注销。有没有办法做到这一点?谢谢
好吧,我认为在这种情况下没有必要放置我的代码,无论如何这就是我的函数的样子
func displayLogOutAlert() {
let alert = PCLBlurEffectAlert.Controller(title: nil, message: nil, effect: UIBlurEffect(style: .light), style: .actionSheet)
let alertBtnYes = PCLBlurEffectAlert.Action(title: "Log Out", style: .destructive, handler: { (action) in
alert.dismiss(animated: true, completion: nil)
FBSDKLoginManager().logOut()
GIDSignIn.sharedInstance().signOut()
self.logoutIndicator.startAnimating()
self.performSegue(withIdentifier: "backToLogin", sender: self)
})
let alertBtnCancel = PCLBlurEffectAlert.Action(title: "Cancel", style: .cancel, handler: nil)
//self.presentingViewController?.dismiss(animated: true, completion: nil)
alert.addAction(alertBtnYes)
alert.addAction(alertBtnCancel)
//setting button/text properties
alert.configure(cornerRadius: 10)
alert.configure(buttonBackgroundColor: UIColor.white)
alert.configure(buttonHeight: 55)
alert.configure(buttonFont: [.destructive: UIFont.systemFont(ofSize: 20), .cancel: UIFont.boldSystemFont(ofSize: 20)])
alert.show()
}
使用iOS状态恢复概念来实现这一点。
当您去吃午饭并在办公桌上留下一些东西时,您希望在 return 之后一切都会保持原样。当他按下 iPhone 上的“主页”按钮或接听 phone 电话时,您的用户期望是相同的。他希望打开应用程序并找到与离开时相同状态的应用程序。
应用程序状态保存经常被开发者跳过。为了让用户满意,我们必须关心应用程序状态的保存和恢复。
这里是link实现
我有一个警报视图,当用户按下注销按钮时,他们可以选择注销或取消,但是如果我离开应用程序并返回(不终止应用程序),则警报视图处于活动状态警报视图消失,但我希望它仍然处于活动状态,因为用户尚未选择取消或注销。有没有办法做到这一点?谢谢
好吧,我认为在这种情况下没有必要放置我的代码,无论如何这就是我的函数的样子
func displayLogOutAlert() {
let alert = PCLBlurEffectAlert.Controller(title: nil, message: nil, effect: UIBlurEffect(style: .light), style: .actionSheet)
let alertBtnYes = PCLBlurEffectAlert.Action(title: "Log Out", style: .destructive, handler: { (action) in
alert.dismiss(animated: true, completion: nil)
FBSDKLoginManager().logOut()
GIDSignIn.sharedInstance().signOut()
self.logoutIndicator.startAnimating()
self.performSegue(withIdentifier: "backToLogin", sender: self)
})
let alertBtnCancel = PCLBlurEffectAlert.Action(title: "Cancel", style: .cancel, handler: nil)
//self.presentingViewController?.dismiss(animated: true, completion: nil)
alert.addAction(alertBtnYes)
alert.addAction(alertBtnCancel)
//setting button/text properties
alert.configure(cornerRadius: 10)
alert.configure(buttonBackgroundColor: UIColor.white)
alert.configure(buttonHeight: 55)
alert.configure(buttonFont: [.destructive: UIFont.systemFont(ofSize: 20), .cancel: UIFont.boldSystemFont(ofSize: 20)])
alert.show()
}
使用iOS状态恢复概念来实现这一点。
当您去吃午饭并在办公桌上留下一些东西时,您希望在 return 之后一切都会保持原样。当他按下 iPhone 上的“主页”按钮或接听 phone 电话时,您的用户期望是相同的。他希望打开应用程序并找到与离开时相同状态的应用程序。
应用程序状态保存经常被开发者跳过。为了让用户满意,我们必须关心应用程序状态的保存和恢复。
这里是link实现