iOS如何根据远程的消息推送来跳转到相应页面呢?
- (NSArray *)hooksAfterLoadView;
参考代码:
[[HHRouter shared] map:@"/user/:userId/" toControllerClass:[UserViewController class]]; UIViewController *viewController = [[HHRouter shared] matchController:@"/user/1/"];
推荐一篇文章:http://pizi.me/86
两个实现 Router 模式的库:https://github.com/joeldev/JLRouteshttps://github.com/Huohua/HHRouter
一个运用 Router 思想的完整项目:https://github.com/gaosboy/iOSSF
不需要自己实现router,可以直接用系统的scheme机制。把要跳转的Controller注册一个scheme,然后在消息里配置不同的scheme即可。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
- (NSArray *)hooksAfterLoadView;
这么个函数,在主Controller 加载完毕后能自定义干点啥参考代码:
推荐一篇文章:
http://pizi.me/86
两个实现 Router 模式的库:
https://github.com/joeldev/JLRoutes
https://github.com/Huohua/HHRouter
一个运用 Router 思想的完整项目:
https://github.com/gaosboy/iOSSF
不需要自己实现router,可以直接用系统的scheme机制。把要跳转的Controller注册一个scheme,然后在消息里配置不同的scheme即可。