UIViewController中的多个初始化步骤问题(不能使用多重继承)

时间:2018-01-09 13:45:11

标签: ios swift multiple-inheritance swift-protocols

我正在尝试使用封装在另一个基类中的一些初始化步骤来实现UIPageViewController。

由于Swift中不可能进行多重继承,我试图使用协议,但我想触发封装在基类中的一些初始化步骤。

Here是我写的基本控制器。

它封装了Facebook帐户套件插件,用于隐藏不应该从我的孩子VC中看到的连接信息(例如导入AccountKit指令,AKFAccountKit类实例)。

当我在标准类中使用它时,它可以工作:

class ClientViewController: AccountKitBaseViewController { /*...*/ }
extension ClientViewController: AccountKitBaseViewControllerDelegate {/*...*/}

但如果我使用PageVC作为客户端类,我就无法使用它:

class ClientViewController: UIPageViewController, AccountKitBaseViewController { /* Error: Multiple inheritance from classes 'UIPageViewController' and 'AccountKitBaseViewController'*/ }
extension ClientViewController: AccountKitBaseViewControllerDelegate {/*...*/}

我怎样设法做到这一点?

1 个答案:

答案 0 :(得分:0)

我建议您将AccountKitBaseViewController的所有逻辑放到某个助手类中,并将此类的实例添加到控制器中。它将帮助您避免代码重复。您可以使用以下助理类:

class SocialNetworkAssistant {

    //Put here all required propertie from AccountKitBaseViewController
    public var delegate: AccountKitBaseViewControllerDelegate?
    public var isUserLoggedIn: Bool = false
    private var _accountKit: AKFAccountKit!
    private var _pendingLoginViewController: AKFViewController?

    //Put here all required methods from AccountKitBaseViewController
    public func accountKitLogout(completion: (() -> Swift.Void)? = nil) {

        guard isUserLoggedIn == true else { return }

        isUserLoggedIn = false
        _accountKit?.logOut()
        completion?()
    }

    // ... and so on
}

然后你可以将SocialNetworkAssistant的实例放入你的控制器中:

class ClientViewControllerFirst : UIViewController, AKFViewControllerDelegate {

    private let socialNetworkAssistantInstance = SocialNetworkAssistant()

    /* AKFViewControllerDelegate methods implementation */
}

class ClientViewControllerSecond : UIPageViewController, AKFViewControllerDelegate {

    private let socialNetworkAssistantInstance = SocialNetworkAssistant()

    /* AKFViewControllerDelegate methods implementation */
}

您也可以使用桥接模式。将SocialNetworkAssistant作为将实现AKFViewControllerDelegate而不是控制器的所有类的基类。然后,您将在控制器中使用SocialNetworkAssistant的不同子类。