gpt4 book ai didi

ios - 如何使用 swift 2.2 让警报 View 出现在 View Controller 的中心

转载 作者:行者123 更新时间:2023-11-30 12:53:10 24 4
gpt4 key购买 nike

我正在使用 swift 2.2 开发一个应用程序,在我的应用程序中,当用户点击该按钮时,我有一个按钮,警报 View 将出现,其中包含四个垂直按钮,一切正常,但警报 View 出现在 View Controller 的底部如何在 View Controller 的中心显示。

注意:我不想显示任何标题和消息,只需显示四个按钮。

如果我使用这个:

let alert = UIAlertController(title: " ", message: "select colors", preferredStyle: UIAlertControllerStyle.Alert)

它有助于显示在 View Controller 的中心,但没有标题和消息,它看起来并没有更好,所以我使用了以下代码

代码:

let alert = UIAlertController()

alert.addAction(UIAlertAction(title: "Red Color", style: UIAlertActionStyle.Default, handler: nil))

alert.addAction(UIAlertAction(title: "Blue Color", style: UIAlertActionStyle.Default, handler: nil))

alert.addAction(UIAlertAction(title: "Green Color", style: UIAlertActionStyle.Default, handler: nil))

alert.addAction(UIAlertAction(title: "Yellow Color", style: UIAlertActionStyle.Default, handler: nil))

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

最佳答案

只需将标题和消息设置为零即可。我在 swift 3 中测试了它。

let alert = UIAlertController(title: nil, message: nil, preferredStyle: UIAlertControllerStyle.alert)

关于ios - 如何使用 swift 2.2 让警报 View 出现在 View Controller 的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40715417/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com