TestsTested | ✓ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2016 |
Maintained by Gemini Wen.
A URL Router who parse url use regex express for iOS. Inspired by HHRouter
Map URL patterns to a block.
GMRouter *router = [GMRouter shared];
GMRouterBlock block = ^(NSDictionary *params) {
NSLog(@"%@", params[@"uid"]);
NSLog(@"%@", params[@"pid"]);
};
[router map:@"/gemini/[uid]/[pid]" toBlock:block];
Get the block and parameters when request a url
GMRouterBlock newBlock = [router matchBlock:@"/gemini/123/23423?hello=world"];
newBlock(nil);
We will get the params in block.
GMRouter *router = [GMRouter shared];
[router map:@"/q/[questionId]" toControllerClass:[UIViewController class]];
UIViewController *controller = [router matchViewController:@"/q/1000010000?__ea=111"];
XCTAssertEqualObjects(controller.params[@"questionId"], @"1000010000");