// // UIStoryboard+Extension.swift // botiOS // // Created by lidapeng on 2018/1/7. // Copyright © 2018年 lidapeng. All rights reserved. // import UIKit extension UIStoryboard { class func loadViewControllerIdentifier(storyboardName : String, identifier : String) -> UIViewController { let storyBoard = UIStoryboard.init(name: storyboardName, bundle: Bundle.main) return storyBoard.instantiateViewController(withIdentifier: identifier) } }