Declare array of classes that conform to a protocol

后端 未结 4 1730
不知归路
不知归路 2020-12-19 04:40

Lets say I have created this protocol and a couple of classes

import UIKit

protocol ControllerConstructorProtocol {
    class func construct() -> UIViewC         


        
4条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-19 05:16

    "array of classes that conform to a protocol" can be declared like Array.

    You can:

    var array: Array = [
        MyConstructor.self,
        MyOtherConstructor.self,
    ]
    

    But...,

        array[0].construct()
    //  ^ error: accessing members of protocol type value 'ControllerConstructorProtocol.Type' is unimplemented
    

    Calling method on the item is "unimplemented".

    As of now, you have to declare the protocol as @objc, and call the method via AnyClass. Moreover, for some reasons, we cannot directly cast array[0] to AnyClass, instead, we have to cast it to Any, then AnyClass.

    @objc protocol ControllerConstructorProtocol {
        class func construct() -> UIViewController?
    }
    
    var array: Array = [
        MyConstructor.self,
        MyOtherConstructor.self,
    ]
    
    let vc = (array[0] as Any as AnyClass).construct()
    

    Note: Casting problem was fixed in Swift 1.2 / Xcode 6.3. But "unimplemented" is "unimplmented" :(


    Just random ideas:

    It's depends on your actual use-case, but in this particular case, array of ()-> UIViewController? closures is sufficient:

    var array: [() -> UIViewController?] = [
        MyConstructor.construct,
        MyOtherConstructor.construct,
    ]
    
    let vc = array[0]()
    

    If you have several methods, you might want to use type-erased wrapper of the protocol.

    protocol ControllerConstructorProtocol {
        class func construct() -> UIViewController?
        class func whoami() -> String
    }
    
    struct ControllerConstructorWrapper {
        private let _construct: () -> UIViewController?
        private let _whoami: () -> String
        init(_ t:T.Type) {
            _construct = { t.construct() }
            _whoami = { t.whoami() }
        }
        func construct() -> UIViewController? { return _construct() }
        func whoami() -> String { return _whoami() }
    }
    
    var array: [ControllerConstructorWrapper] = [
        ControllerConstructorWrapper(MyConstructor),
        ControllerConstructorWrapper(MyOtherConstructor),
    ]
    
    let who = array[0].whoami()
    let vc = array[0].construct()
    

提交回复
热议问题