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