Yet another URL Router for iOS. Clean, Fast & Flexable. Inspired by ABRouter & Routable iOS.
Map URL patterns to viewController. Better in AppDelegate.
[[HHRouter shared] map:@"/user/:userId/" toControllerClass:[UserViewController class]];
Define a NSDictionary
property named params
in viewControllers. Better in your BaseViewController.
@interface UserViewController : UIViewController
@property (strong, nonatomic) NSDictionary *params;
@end
Get viewController Instance from URL. Params will be automatic parsed.
UIViewController *viewController = [[HHRouter shared] match:@"/user/1/"];
XCTAssertEqualObjects([viewController class], [UserViewController class]);
XCTAssertEqualObjects(viewController.params[@"route"], @"/user/1/");
XCTAssertEqualObjects(viewController.params[@"userId"], @"1");
URL Query Params is also supported. This will make things VERY flexable.
UIViewController *viewController = [[HHRouter shared] match:@"/user/1/?tabIndex=3"];
XCTAssertEqualObjects(viewController.params[@"tabIndex"], @"3");
If your app has defined some url schemes, HHRouter will know.
UIViewController *viewController = [[HHRouter shared] match:@"hhrouter://user/1/"];
XCTAssertEqualObjects([viewController class], [UserViewController class]);
pod 'HHRouter', '0.1'
#import <HHRouter/HHRouter.h>
If you're not able to use CocoaPods, please install HHRouter as a git submodule and add the files to your Xcode project.
If you're building your applications using HHRouter, please let me know! (add your application name & App Store link here and pull reuqest this README.
HHRouter is available under the MIT license.