gpt4 book ai didi

ios - Swift:如何在类函数中将值转换为 Self

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

<分区>

这里我有一个类函数public class func testing() -> Self:

public extension UIViewController {
public class func testing() -> Self {
return getInstance()
}
}

还有一个我无法修改的 getInstance() -> UIViewController 函数:

public func getInstance() -> UIViewController {
return UIViewController()
}

现在,如何将getInstance()函数的返回值转换为testing()函数中的Self

return getInstance() // error
return getInstance() as! Self // error
return getInstance() as! UIViewController // error

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