gpt4 book ai didi

ios - 如何将 UIViewController 类型传递给函数并在 iOS Swift 中类型转换变量?

转载 作者:搜寻专家 更新时间:2023-11-01 06:30:07 26 4
gpt4 key购买 nike

解释

我正在定义一个通用 API 方法来处理我的应用程序中的弹出窗口。是否可以将 UIViewController 的类型传递给函数并将函数中的变量 popOverVC 类型转换为 popUpVC 的类型,即作为参数传递给函数。 Swift下的所有程序都可观

引用代码

func showAsPopUp(currentVC: UIViewController,currentVCname: String, popupStoryboardID: String, popUpVC:UIViewController){
let popUpVCType:AnyClass = type(of: popUpVC)
let popOverVC = UIStoryboard(name: currentVCname, bundle: nil).instantiateInitialViewController(popupStoryboardID) as! popUpVCType
currentVC.addChildViewController(popOverVC)
}

最佳答案

这是使用 generics 的好情况.

func showAsPopUp<T: UIViewController>(currentVC: UIViewController,currentVCname: String, popupStoryboardID: String, popUpVC: T.type) {
let popOverVC = UIStoryboard(name: currentVCname, bundle: nil).instantiateViewController(withIdentifier: popupStoryboardID) as! T
currentVC.addChildViewController(popOverVC)
}

不确定您的功能是什么,但这就是泛型与上述代码相适应的方式。

上述方法的用法如下:

showAsPopUp(currentVC: UIViewController(), currentVCname: "asdsadv", popupStoryboardID: "asd", popUpVC: SomePopUpViewController.self)

关于ios - 如何将 UIViewController 类型传递给函数并在 iOS Swift 中类型转换变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48594536/

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