目前要加载具有相同nibname的viewcontroller,我使用代码如下
let recommendationVC : RecommendationVC = RecommendationVC(nibName: "RecommendationVC", bundle: nil)
我觉得指定nibname是不必要的,因为它与控制器名称相同。所以我决定使用泛型并使用泛型推断类型和笔尖名称
protocol NibIdentifiable {
static var nibNameIdentifier: String { get }
}
// MARK: - Indentifies each storyboard from its classname.
extension NibIdentifiable where Self: UIViewController {
static var nibNameIdentifier: String {
return String(describing: self)
}
}
extension UIViewController :NibIdentifiable
{
}
extension UIViewController {
func instantiate<Controller: UIViewController>(_: Controller.Type) -> Controller where Controller: NibIdentifiable {
guard let controller = Self(nibName:Controller.nibNameIdentifier,bundle:nil) as? Controller else {
fatalError("Could not dequeue cell with identifier: \(Controller.nibNameIdentifier)")
}
return controller
}
}
但是在尝试创建VC实例时,
let recommendationVC :RecommendationVC = UIViewController.instantiate()
收到错误 无法推断通用参数“控制器”
这种方法有什么问题?
答案 0 :(得分:6)
添加UIViewController的扩展名
extension UIViewController {
static func instantiateFromNib() -> Self {
func instantiateFromNib<T: UIViewController>(_ viewType: T.Type) -> T {
return T.init(nibName: String(describing: T.self), bundle: nil)
}
return instantiateFromNib(self)
}
}
然后像那样使用
让myViewController = MyViewController.instantiateFromNib()
答案 1 :(得分:2)
<<non-copyable>>
这必须有效。
在我的情况下,我使用一些Storyboardable协议。并从特定的故事板启动Controller。