├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Tests │ ├── Info.plist │ └── Tests.swift ├── TheRouter.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TheRouter-Example.xcscheme ├── TheRouter.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── TheRouter │ ├── AnyPrifxClassTestController.swift │ ├── AppConfigServices.swift │ ├── AppDelegate.swift │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── LARouterPresentController.swift │ ├── Main.storyboard │ ├── TheRouterApi.swift │ ├── TheRouterBController.h │ ├── TheRouterBController.m │ ├── TheRouterBaseAViewController.h │ ├── TheRouterBaseAViewController.m │ ├── TheRouterBaseBViewController.h │ ├── TheRouterBaseBViewController.m │ ├── TheRouterBaseControllerSwift.swift │ ├── TheRouterBaseViewController.h │ ├── TheRouterBaseViewController.m │ ├── TheRouterController.swift │ ├── TheRouterControllerA.swift │ ├── TheRouterControllerC.swift │ ├── TheRouterControllerD.swift │ ├── TheRouterControllerE.swift │ ├── TheRouterMacroRegisterController.swift │ ├── TheRouterModel.swift │ ├── TheRouterTabBarController.h │ ├── TheRouterTabBarController.m │ ├── TheRouterWebController.swift │ ├── TheRouter_Example-Bridging-Header.h │ └── ViewController.swift ├── LICENSE ├── README.md ├── README_CN.md ├── TheRouter-ObjectiveCDemo ├── Podfile ├── Podfile.lock ├── Pods │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Target Support Files │ │ ├── Pods-TheRouter-ObjectiveCDemo │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-Info.plist │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-acknowledgements.markdown │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-acknowledgements.plist │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-dummy.m │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-frameworks.sh │ │ │ ├── Pods-TheRouter-ObjectiveCDemo-umbrella.h │ │ │ ├── Pods-TheRouter-ObjectiveCDemo.debug.xcconfig │ │ │ ├── Pods-TheRouter-ObjectiveCDemo.modulemap │ │ │ └── Pods-TheRouter-ObjectiveCDemo.release.xcconfig │ │ ├── TheRouter │ │ │ ├── TheRouter-Info.plist │ │ │ ├── TheRouter-dummy.m │ │ │ ├── TheRouter-prefix.pch │ │ │ ├── TheRouter-umbrella.h │ │ │ ├── TheRouter.debug.xcconfig │ │ │ ├── TheRouter.modulemap │ │ │ └── TheRouter.release.xcconfig │ │ └── Toast │ │ │ ├── Toast-Info.plist │ │ │ ├── Toast-dummy.m │ │ │ ├── Toast-prefix.pch │ │ │ ├── Toast-umbrella.h │ │ │ ├── Toast.debug.xcconfig │ │ │ ├── Toast.modulemap │ │ │ └── Toast.release.xcconfig │ ├── TheRouter.xcodeproj │ │ └── project.pbxproj │ ├── TheRouter │ │ ├── LICENSE │ │ ├── README.md │ │ └── TheRouter │ │ │ └── Classes │ │ │ ├── Decode+Extension.swift │ │ │ ├── TheRouter+Convenience.swift │ │ │ ├── TheRouter+Generate.swift │ │ │ ├── TheRouter+Jump.swift │ │ │ ├── TheRouter+Service.swift │ │ │ ├── TheRouter.swift │ │ │ ├── TheRouterBuilder.swift │ │ │ ├── TheRouterDebugTool.swift │ │ │ ├── TheRouterExtension.swift │ │ │ ├── TheRouterInterceptor.swift │ │ │ ├── TheRouterManager.swift │ │ │ ├── TheRouterParser.swift │ │ │ ├── TheRouterPattern.swift │ │ │ ├── TheRouterRequest.swift │ │ │ ├── TheRouterServiceManager.swift │ │ │ ├── TheRouterServiceProtocol.swift │ │ │ └── TheRouterable.swift │ ├── Toast.xcodeproj │ │ └── project.pbxproj │ └── Toast │ │ ├── README.md │ │ ├── Toast-Framework │ │ └── Toast.h │ │ ├── Toast │ │ ├── UIView+Toast.h │ │ └── UIView+Toast.m │ │ └── license ├── TheRouter-ObjectiveCDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── TheRouter-ObjectiveCDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── TheRouter-ObjectiveCDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── OpenRouter │ ├── TheRouterApi.swift │ ├── TheRouterBridging.swift │ └── TheRouterWebController.swift │ ├── SceneDelegate.h │ ├── SceneDelegate.m │ ├── TheRouter-ObjectiveCDemo-Bridging-Header.h │ ├── TheRouterController.h │ ├── TheRouterController.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── TheRouter.podspec ├── TheRouter ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Decode+Extension.swift │ ├── TheRouerBridge.swift │ ├── TheRouter+Convenience.swift │ ├── TheRouter+Generate.swift │ ├── TheRouter+Jump.swift │ ├── TheRouter+Service.swift │ ├── TheRouter.swift │ ├── TheRouterBuilder.swift │ ├── TheRouterDebugTool.swift │ ├── TheRouterDynamicParamsMapping.h │ ├── TheRouterDynamicParamsMapping.m │ ├── TheRouterExtension.swift │ ├── TheRouterInterceptor.swift │ ├── TheRouterManager.swift │ ├── TheRouterParser.swift │ ├── TheRouterPattern.swift │ ├── TheRouterRequest.swift │ ├── TheRouterServiceManager.swift │ ├── TheRouterServiceProtocol.swift │ ├── TheRouterable │ ├── .gitignore │ ├── Package.swift │ └── Sources │ │ └── TheRouter │ │ └── TheRouterable.swift │ └── TheRouterableProxy.h ├── TheRouterMacro ├── .editorconfig ├── .gitignore ├── .vscode │ └── launch.json ├── Package.resolved ├── Package.swift └── Sources │ ├── TheRouterMacro │ └── TheRouterMacro.swift │ ├── TheRouterMacroClient │ └── main.swift │ └── TheRouterMacroMacros │ └── TheRouterMacroMacro.swift ├── _Pods.xcodeproj └── assets ├── IMG_7130.JPG ├── ScreenRecording.gif ├── TheRouter.png ├── chat_group.JPG ├── fetchRouterRegisterClass.png ├── loadclass_cache.png ├── opt.png ├── project.png ├── registerList_save.png ├── services.png ├── services_register.png └── vc.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /Example/TheRouter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TheRouter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TheRouter.xcodeproj/xcshareddata/xcschemes/TheRouter-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcodeproj/xcshareddata/xcschemes/TheRouter-Example.xcscheme -------------------------------------------------------------------------------- /Example/TheRouter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TheRouter.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/TheRouter.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/TheRouter/AnyPrifxClassTestController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/AnyPrifxClassTestController.swift -------------------------------------------------------------------------------- /Example/TheRouter/AppConfigServices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/AppConfigServices.swift -------------------------------------------------------------------------------- /Example/TheRouter/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/AppDelegate.swift -------------------------------------------------------------------------------- /Example/TheRouter/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/TheRouter/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TheRouter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/Info.plist -------------------------------------------------------------------------------- /Example/TheRouter/LARouterPresentController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/LARouterPresentController.swift -------------------------------------------------------------------------------- /Example/TheRouter/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/Main.storyboard -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterApi.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBController.h -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBController.m -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseAViewController.h -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseAViewController.m -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseBViewController.h -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseBViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseBViewController.m -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseControllerSwift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseControllerSwift.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseViewController.h -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterBaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterBaseViewController.m -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterController.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterControllerA.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterControllerA.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterControllerC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterControllerC.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterControllerD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterControllerD.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterControllerE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterControllerE.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterMacroRegisterController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterMacroRegisterController.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterModel.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterTabBarController.h -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterTabBarController.m -------------------------------------------------------------------------------- /Example/TheRouter/TheRouterWebController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouterWebController.swift -------------------------------------------------------------------------------- /Example/TheRouter/TheRouter_Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/TheRouter_Example-Bridging-Header.h -------------------------------------------------------------------------------- /Example/TheRouter/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/Example/TheRouter/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/README_CN.md -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Podfile -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Podfile.lock -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-Info.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-acknowledgements.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-dummy.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-frameworks.sh -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo-umbrella.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.debug.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.modulemap -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Pods-TheRouter-ObjectiveCDemo/Pods-TheRouter-ObjectiveCDemo.release.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-Info.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-dummy.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-prefix.pch -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter-umbrella.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.debug.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.modulemap -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/TheRouter/TheRouter.release.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-Info.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-dummy.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-prefix.pch -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast-umbrella.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.debug.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.modulemap -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Target Support Files/Toast/Toast.release.xcconfig -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/LICENSE -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/README.md -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/Decode+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/Decode+Extension.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Convenience.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Generate.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Jump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Jump.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter+Service.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouter.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterBuilder.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterDebugTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterDebugTool.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterExtension.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterInterceptor.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterManager.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterParser.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterPattern.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterRequest.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterServiceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterServiceManager.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterServiceProtocol.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/TheRouter/TheRouter/Classes/TheRouterable.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast/README.md -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast/Toast-Framework/Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast/Toast-Framework/Toast.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast/Toast/UIView+Toast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast/Toast/UIView+Toast.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast/Toast/UIView+Toast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast/Toast/UIView+Toast.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/Pods/Toast/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/Pods/Toast/license -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/AppDelegate.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/AppDelegate.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/Info.plist -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterApi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterApi.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterBridging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterBridging.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterWebController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/OpenRouter/TheRouterWebController.swift -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/SceneDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/SceneDelegate.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/SceneDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/SceneDelegate.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo-Bridging-Header.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouterController.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouterController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/TheRouterController.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/ViewController.h -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/ViewController.m -------------------------------------------------------------------------------- /TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter-ObjectiveCDemo/TheRouter-ObjectiveCDemo/main.m -------------------------------------------------------------------------------- /TheRouter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter.podspec -------------------------------------------------------------------------------- /TheRouter/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheRouter/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TheRouter/Classes/Decode+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/Decode+Extension.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouerBridge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouerBridge.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouter+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouter+Convenience.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouter+Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouter+Generate.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouter+Jump.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouter+Jump.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouter+Service.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouter+Service.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouter.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterBuilder.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterDebugTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterDebugTool.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterDynamicParamsMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterDynamicParamsMapping.h -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterDynamicParamsMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterDynamicParamsMapping.m -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterExtension.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterInterceptor.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterManager.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterParser.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterPattern.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterPattern.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterRequest.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterServiceManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterServiceManager.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterServiceProtocol.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterable/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterable/.gitignore -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterable/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterable/Package.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterable/Sources/TheRouter/TheRouterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterable/Sources/TheRouter/TheRouterable.swift -------------------------------------------------------------------------------- /TheRouter/Classes/TheRouterableProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouter/Classes/TheRouterableProxy.h -------------------------------------------------------------------------------- /TheRouterMacro/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/.editorconfig -------------------------------------------------------------------------------- /TheRouterMacro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/.gitignore -------------------------------------------------------------------------------- /TheRouterMacro/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/.vscode/launch.json -------------------------------------------------------------------------------- /TheRouterMacro/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/Package.resolved -------------------------------------------------------------------------------- /TheRouterMacro/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/Package.swift -------------------------------------------------------------------------------- /TheRouterMacro/Sources/TheRouterMacro/TheRouterMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/Sources/TheRouterMacro/TheRouterMacro.swift -------------------------------------------------------------------------------- /TheRouterMacro/Sources/TheRouterMacroClient/main.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TheRouterMacro/Sources/TheRouterMacroMacros/TheRouterMacroMacro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/TheRouterMacro/Sources/TheRouterMacroMacros/TheRouterMacroMacro.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /assets/IMG_7130.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/IMG_7130.JPG -------------------------------------------------------------------------------- /assets/ScreenRecording.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/ScreenRecording.gif -------------------------------------------------------------------------------- /assets/TheRouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/TheRouter.png -------------------------------------------------------------------------------- /assets/chat_group.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/chat_group.JPG -------------------------------------------------------------------------------- /assets/fetchRouterRegisterClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/fetchRouterRegisterClass.png -------------------------------------------------------------------------------- /assets/loadclass_cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/loadclass_cache.png -------------------------------------------------------------------------------- /assets/opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/opt.png -------------------------------------------------------------------------------- /assets/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/project.png -------------------------------------------------------------------------------- /assets/registerList_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/registerList_save.png -------------------------------------------------------------------------------- /assets/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/services.png -------------------------------------------------------------------------------- /assets/services_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/services_register.png -------------------------------------------------------------------------------- /assets/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuolalaTech/hll-wp-therouter-ios/HEAD/assets/vc.png --------------------------------------------------------------------------------