No Description

UIStoryboardExt.swift 365B

    // // UIStoryboardExt.swift // PaiaiUIKit // // Created by FFIB on 2017/9/14. // Copyright © 2017年 FFIB. All rights reserved. // import UIKit extension UIStoryboard { public func instantiateViewController<T: UIViewController> (type: T.Type) -> T { return instantiateViewController(withIdentifier: String(describing: type)) as? T ?? T() } }