# STCRouter
### how to use
```
pod 'STCRouter'
```
### standard URL format
```
http:\\host[:port][abs_path][:parameters][?query]#fragment
```
### example
```
1.Use STCRouterCenter to register URL format for controller with params, like this:
[[STCRouterCenter defaultCenter].router registerURLFormat:@"router:///root"
toController:[ModalController class] withOptions:[[[STCRouterOption routerOptions] rootIndex:0]
forDefaultParams:@{@"title": @"root"}]];
2.Setup blackList or whiteList, like this:
// 设置路由黑名单
[[STCRouterCenter defaultCenter] addBlackListWithObjects:@[@"com.apple.mobilesafari"]];
// 设置路由白名单
[[STCRouterCenter defaultCenter] addWhiteListInPathWithBIDs:@{@"root": @[@""]}];
[[STCRouterCenter defaultCenter] addWhiteListInPathWithBIDs:@{@"child": @[@"com.stevchen.STCRouter"]}];
Attention:
so, if you add a bundleId into blackList, app with this bundleId cann't open any path in router.
If you add route path with bundleId into whiteList, only app with bundleId in whiteList can open the route.
3.handle undefinded route, like this:
[[STCRouterCenter defaultCenter].router setRouterForward:^(STCRouterParams *routerParams, STCRouterError *error) {
//handle undefinded route
}];
4.open route, like this:
inside app without scheme
[[STCRouterCenter defaultCenter].router openURL:@"/child/user/child/user" withAnimated:YES extraParams:nil];
or outside app with scheme
[[STCRouterCenter defaultCenter].router openExternalURL:@"router:///root"];
or with stack controllers
[[STCRouterCenter defaultCenter].router openURL:@"router:///user/child/root"];
5.intercept route, like this:
NSString *sourceApplication = [options valueForKey:UIApplicationOpenURLOptionsSourceApplicationKey];
BOOL isFilter = [[STCRouterCenter defaultCenter] filterRouterWithUrl:url.absoluteString BID:sourceApplication];
if (!isFilter) {
[[STCRouterCenter defaultCenter].router openURL:url.absoluteString withAnimated:YES extraParams:nil];
}
6.set route from native to hybird, like this:
[[STCRouterCenter defaultCenter].router changeURLFormat:@"router:///child" toHybridUrl:@"http://www.baidu.com"];
you can revert it to native route:
[[STCRouterCenter defaultCenter].router revertFromHybridWithURLFormat:@"router:///child"];
```
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
基于标准URL的iOS路由系统,可实现业务模块组件化,控制器之间零耦合,可实现黑白名单控制,可进行native降级到hybrid。 软件开发设计:PHP、QT、应用软件开发、系统软件开发、移动应用开发、网站开发C++、Java、python、web、C#等语言的项目开发与学习资料 硬件与设备:单片机、EDA、proteus、RTOS、包括计算机硬件、服务器、网络设备、存储设备、移动设备等 操作系统:LInux、IOS、树莓派、安卓开发、微机操作系统、网络操作系统、分布式操作系统等。此外,还有嵌入式操作系统、智能操作系统等。 网络与通信:数据传输、信号处理、网络协议、网络与通信硬件、网络安全网络与通信是一个非常广泛的领域,它涉及到计算机科学、电子工程、数学等多个学科的知识。 云计算与大数据:数据集、包括云计算平台、大数据分析、人工智能、机器学习等,云计算是一种基于互联网的计算方式,通过这种方式,共享的软硬件资源和信息可以按需提供给计算机和其他设备。
资源推荐
资源详情
资源评论
收起资源包目录
基于标准URL的iOS路由系统,可实现业务模块组件化,控制器之间零耦合,可实现黑白名单控制,可进行native降级到hybrid。.zip (41个子文件)
cm
STCRouter.podspec 675B
Router
STCWebViewController.h 236B
STCNavigationController.h 239B
STCNavigationController.m 856B
STCTabBarController.m 840B
STCRouter
STCRouterCenter.h 998B
STCRouterProtocol.h 335B
STCRouter.m 18KB
STCRouterOption.m 6KB
STCRouterParser.h 706B
STCRouterError.m 991B
STCRouterParams.h 793B
STCRouterFilter.h 1KB
STCRouter.h 5KB
STCRouterCenter.m 1KB
STCRouterError.h 1KB
STCRouterParams.m 879B
STCRouterParser.m 5KB
STCRouterFilter.m 3KB
STCRouterOption.h 6KB
STCViewController.m 709B
STCTabBarController.h 227B
STCWebViewController.m 2KB
STCViewController.h 411B
LICENSE 1KB
STCRouter.xcodeproj
project.pbxproj 21KB
xcuserdata
chenxiancai.xcuserdatad
xcdebugger
Breakpoints_v2.xcbkptlist 91B
xcschemes
STCRouter.xcscheme 4KB
xcschememanagement.plist 481B
project.xcworkspace
contents.xcworkspacedata 199B
xcuserdata
chenxiancai.xcuserdatad
UserInterfaceState.xcuserstate 91KB
RouterExample
Default@2x.png 16KB
AppDelegate.h 275B
AppDelegate.m 12KB
main.m 328B
STCRouter-Info.plist 2KB
Default-568h@2x.png 18KB
Default.png 6KB
en.lproj
InfoPlist.strings 45B
STCRouter-Prefix.pch 315B
README.md 2KB
共 41 条
- 1
资源评论
普通网友
- 粉丝: 1w+
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功