Jeon Suyeol

Results 171 comments of Jeon Suyeol

Can you share the code that caused an error? I think this might work. ```swift Navigator.map("myapp://users/", handler) Navigator.map("othertarget://users/", handler) Navigator.map("https://users/", handler) ```

Hmm, I'm not sure that I completely understood. Is this what you want to do? For example: ```swift Navigator.map("*://users/", handler) // map wildcard scheme ``` Then the following `open()` executes...

This is not supported yet. Maybe I can consider to add this feature on next major update but currently I don't think this is necessary for general purpose.

I think the matcher should not be dependent on the order but how many paths the url matches. #120 improves matching algorithm. So `app://services/github` will only match with n°3 and...

@therudite, Thanks for reporting! Do you have any idea to fix this?

Try: ```swift navigator.handle("myapp://foo/bar") { url, values, context in let fromViewController = context["fromViewController"] } ```

Try `[self.view endEditing:YES];`

I've created a patch: #445. I would really appreciate if somebody could review this! Thanks :)