gpt4 book ai didi

swift - 初始化 UIAlertController 的子类

转载 作者:可可西里 更新时间:2023-10-31 23:56:15 26 4
gpt4 key购买 nike

我希望创建 UIAlertController 的自定义子类。如果我理解正确,我需要在子类初始化期间的某处调用 super.init(title...

但我一直在使用指定初始化器 时遇到问题。我已阅读文档,但无法弄清楚如何让它工作。这是我的代码(注意代码中的注释):

class AccountInfoActionSheet: UIAlertController {

required init?(coder aDecoder: NSCoder) { //xcode says I need this
super.init(coder: aDecoder) //it also says I need to call a designated initializers so here it is
super.init(title: "Info", message: "Heres the Info", preferredStyle: .actionSheet) //but now I can't call this initializer
fatalError("init(coder:) has not been implemented")
}
}

编辑:由于 UIAlertController 不能被子类化,我只是创建了一个函数,它在 ViewController 中需要的地方返回正确配置的 UIAlertController

最佳答案

你不应该继承UIAlertController

检查此链接:

https://developer.apple.com/documentation/uikit/uialertcontroller#//apple_ref/doc/uid/TP40014538-CH1-SW2

您可以使用扩展 添加方法,但不应将其子类化。

关于swift - 初始化 UIAlertController 的子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45895230/

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