// // RQRouter.h // RQCommon // // Created by 张嵘 on 2018/11/16. // Copyright © 2018 张嵘. All rights reserved. // #import @class RQBaseViewController; @class RQBaseViewModel; @interface RQRouter : NSObject /// Retrieves the shared router instance. /// /// Returns the shared router instance. + (instancetype)sharedInstance; /// Retrieves the view corresponding to the given view model. /// /// viewModel - The view model /// /// Returns the view corresponding to the given view model. - (RQBaseViewController *)viewControllerForViewModel:(RQBaseViewModel *)viewModel; @end