RouteBookmarksSort

Objective-C

enum RouteBookmarksSort : NSInteger {}

Swift

enum RouteBookmarksSort : Int, @unchecked Sendable

Constants indicating the sort order of the routes.

  • Sorts descending by update time ( most recent at top ).

    Declaration

    Objective-C

    RouteBookmarksSortByDate = 0

    Swift

    case byDate = 0
  • Sorts ascending by name.

    Declaration

    Objective-C

    RouteBookmarksSortByName

    Swift

    case byName = 1