swift 在swift中创建一个警报视图弹出窗口

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在swift中创建一个警报视图弹出窗口相关的知识,希望对你有一定的参考价值。

let alertController = UIAlertController(title: "No network", message:
                "Sorry, you need an active internet connection.", preferredStyle: UIAlertControllerStyle.Alert)

alertController.addAction(UIAlertAction(title: "Dismiss", style: UIAlertActionStyle.Default,handler: nil))

self.presentViewController(alertController, animated: true, completion: nil)

以上是关于swift 在swift中创建一个警报视图弹出窗口的主要内容,如果未能解决你的问题,请参考以下文章

在所有视图控制器中创建警报功能 - swift

如何在 Swift iOS 中创建一个通用的弹出视图控制器

swift [Swift]在当前弹出窗口中显示警报(SimpleTransitioningDelegate)

Swift,隐藏/删除窗口(查看?)

如何在 Swift 中创建像指南针一样的“滑动视图”?

在 Swift 的警报中使用自定义视图