gpt4 book ai didi

ios - 如何在 xcode 中加载 View 后创建弹出警报

转载 作者:行者123 更新时间:2023-11-28 09:36:59 25 4
gpt4 key购买 nike

我需要在屏幕上加载 View 时弹出一个简单的警报。我找到了一些关于如何创建弹出警报的教程,但它们都需要按下 UI 按钮。我需要它在 View 加载时自动弹出。

这是我的代码的开始,但是我不知道如何在不使用 UIbutton 操作的情况下调用代码:

    override func viewDidLoad() {
super.viewDidLoad()

let alertController = UIAlertController(title: "Disclaimer", message:
"Hello, world!", preferredStyle: UIAlertControllerStyle.Alert)
alertController.addAction(UIAlertAction(title: "Accept", style: UIAlertActionStyle.Default,handler: nil))

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

最佳答案

alert that pops up when the view loads on the screen

问题是“加载”并不意味着“在屏幕上”。你把两个不同的东西混为一谈了。 viewDidLoad 仅仅意味着 View Controller 一个 View 。直到viewDidAppear:, View 才出现在屏幕上。这就是放置这段代码的地方。

关于ios - 如何在 xcode 中加载 View 后创建弹出警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35297047/

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