gpt4 book ai didi

swift - 默认使用调用对象的 "self"的方法

转载 作者:可可西里 更新时间:2023-11-01 00:21:12 26 4
gpt4 key购买 nike

我有一个实用程序类,其中包含多个其他类使用的函数。其中之一是警报功能:

class Utils {
func doAlert (title: String, message: String, target: UIViewController) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Close", style: .cancel, handler: nil))
target.present(alert, animated: true, completion: nil)
}
}

此函数将始终以 View Controller 上的 self 为目标,因此我不想在每次调用该函数时都添加 target: self,但我不能只将它设置为默认值,因为这会导致它返回到 Utils 类。有什么办法可以重写它来避免这种情况吗?

最佳答案

正是出于这个原因,实用程序类是一种反模式,您真正想要使用的是扩展:

extension UIViewController {
func doAlert(title: String, message: String) {
let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "Close", style: .cancel, handler: nil))
self.present(alert, animated: true, completion: nil)
}
}

然后您可以直接在所有 Controller 上调用该方法:

self.doAlert(title: "title", message: "message")

通常避免使用实用方法的类。尝试向功能实际所属的类型添加方法。

关于swift - 默认使用调用对象的 "self"的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42771239/

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