暫無描述
//// UIStoryboardExt.swift// ExtensionKit//// Created by FFIB on 2017/9/14.// Copyright © 2017年 FFIB. All rights reserved.//import UIKitextension UIStoryboard { public func instantiateController<T: UIViewController> (_ type: T.Type) -> T { return instantiateViewController(withIdentifier: String(describing: type)) as? T ?? T() }}