swift 显示iOS弹出警报消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 显示iOS弹出警报消息相关的知识,希望对你有一定的参考价值。

func alert(title : String, message : String) -> Void {
  var alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.Alert)
  alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
  self.presentViewController(alert, animated: true, completion: nil)
}
    
func alert(message : String) -> Void {
  var alert = UIAlertController(title: "Alert", message: message, preferredStyle: UIAlertControllerStyle.Alert)
  alert.addAction(UIAlertAction(title: "Ok", style: UIAlertActionStyle.Default, handler: nil))
  self.presentViewController(alert, animated: true, completion: nil)
}

以上是关于swift 显示iOS弹出警报消息的主要内容,如果未能解决你的问题,请参考以下文章

收到推送通知且应用程序在前台时如何防止弹出警报

弹出警报消息时如何停止SQL存储过程中的事务

Appium - 弹出警报消息没有被解雇

如何在后台没有任何活动的情况下弹出警报消息?

弹出警报过早显示?

如何向我的苹果 IOS 用户发送弹出警报?