12345678910111213141516171819202122232425 |
- //
- // RouteManager.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/4/27.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface RouteManager : NSObject
- /**
- 注册路由
- */
- + (void)registerRouteWithScheme:(NSString *)scheme;
- /**
- 路由跳转
- */
- + (void)pushRoutesUrlByDictionary:(NSDictionary *)dict viewControll:(NSString *)viewControll;
- @end
|