gpt4 book ai didi

ios - 警报 addAction(action) 给我一条错误消息,指出操作是未解析的标识符

转载 作者:行者123 更新时间:2023-11-29 05:27:10 29 4
gpt4 key购买 nike

我尝试将这个简单的 Ibaction 代码添加到 uibuttion,但它不断向我显示一条错误消息,指出操作是未解析的标识符。你能帮忙吗?

import UIKit

class ViewController: UIViewController {
@IBAction func hello() {
let alert = UIAlertController(title: "hello", message: "daaaammmmmn", preferredStyle: .alert)
let okAction = UIAlertAction(title: "ok", style: .default, handler: nil)
alert.addAction(action)
present(alert, animated: true, completion: nil)
}
}

最佳答案

您犯了一个拼写错误:您在执行 alert.addAction(action) 时写了 let okAction = ...

您应该将 alert.addAction(action) 替换为 alert.addAction(okAction)

关于ios - 警报 addAction(action) 给我一条错误消息,指出操作是未解析的标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58051549/

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