WAAppRouting v0.0.3 Release Notes

Release Date: 2015-08-22 // over 8 years ago
  • ๐Ÿ›  Fixes

    • ๐Ÿ›  Fixed an issue with block execution when no entity registered with the same path.
    • Check for equality on WAAppRouteEntity before triggering any assertion that the path is already used.
    • Fixed the use of WAAppRouting in a project linked to an app extension thanks to @yusefnapora. @see WA_APP_EXTENSION

    Evolution

    • โž• Added a new way to register your route. Instead of using the WAAppRouteEntity, you can now define a path like @"list{WAListViewController}/:itemID{WAListDetailViewController}/extra{WAListDetailExtraViewController}".

    The syntax is the following:

    • url_path_component{ClassName}
    • url_path_component1{ClassName1}/url_path_component2{ClassName2}
    • etc

    If you want to present a modal, then simply add ! after the class you want to present modally like @"list{WAListViewController}/:itemID{WAListDetailViewController}/modal{WAListDetailExtraViewController}!"