//
//  UIStoryboardExt.swift
//  ExtensionKit
//
//  Created by FFIB on 2017/9/14.
//  Copyright © 2017年 FFIB. All rights reserved.
//

import UIKit

extension UIStoryboard {
    public func instantiateController<T: UIViewController> (_ type: T.Type) -> T {
        return instantiateViewController(withIdentifier: String(describing: type)) as? T ?? T()
    }
}