12345678910111213141516171819202122232425 |
- //
- // RQRouter.h
- // RQCommon
- //
- // Created by 张嵘 on 2018/11/16.
- // Copyright © 2018 张嵘. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @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
|