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