NavigationBar


super: UINavigationController (on iOS)

The NavigationBar class implements a specialized view controller that manages the navigation of hierarchical content. This navigation interface makes it possible to present your data efficiently and makes it easier for the user to navigate that content. You generally use this class as-is but you may also subclass to customize the class behavior.

The screens presented by a navigation interface typically mimic the hierarchical organization of your data. At each level of the hierarchy, you provide an appropriate Window to display the content at that level.

Events

  • Load() This event is called when the object becames available in the current runtime system.

  • WillShow() Use this event to be notified when navigation is about to be added to a view hierarchy.

  • DidShow() Use this event to be notified when navigation was added to a view hierarchy.

  • WillHide() Use this event to be notified when navigation is about to be removed from a view hierarchy.

  • DidHide() Use this event to be notified when navigation was removed from a view hierarchy.

  • Unload() This event is called when the object has been removed from the current runtime system (but not yet deallocated).

Properties

  • var bounds: Rect The bounds rectangle, which describes the view’s location and size in its own coordinate system.

  • var frame: Rect The frame rectangle, which describes the view’s location and size in its superview’s coordinate system.

  • var statusBarVisibility: StatusBarVisibility A value indicating whether the status bar should be visible.

  • var statusBarStyle: StatusBarStyle The style of the status bar.

  • var topWindow: Window or NavigationBar Returns Window/Navigation positioned on top of the receiver’s stack. (read-only)

  • var windows: List Array of windows currently managed by the NavigationBar.

  • var navigationBarHidden: Bool A Boolean value that indicates whether the navigation bar is hidden.

  • var navigationBarTranslucent: Bool A Boolean value indicating whether the navigation bar is translucent (true) or not (false).

  • var navigationBarTintColor: Color The tint color to apply to the navigation bar background.

  • var selectedWindow: Window or NavigationBar Returns the currently selected Window or Navigation. (read-only)

  • var prefersLargeTitles: Bool A Boolean value indicating whether the title should be displayed in a large format in the navigation bar. When this property is set to true, the navigation bar allows the title to be displayed out-of-line and using a larger font. The top window must specify whether it wants its title displayed in the large or small format. Use the largeTitleDisplayMode property of the Window to configure the title's appearance. When the property is set to false, the navigation bar displays the title inline with the other bar button items.

  • var objectName: String The name of the object.

Methods

  • func open(completion: Closure = null) Open window in currently displayed window or navigation using the destination object default behaviour .

  • func openIn(window: Window or NavigationBar, completion: Closure = null) Open callee object (TargetWindow) inside parameter object (ContainerWindow) using its default behaviour. Note that TargetWindow and/or ContainerWindow can be a Window or a Navigation. Example: TargetWindow.openIn(ContainerWindow);

  • func openWindow(window: Window or NavigationBar, animated: Bool = true, completion: Closure = null) Pushes a Window/Navigation onto the receiver’s stack and updates the display.

  • func openModal(TransitionStyle: TransitionStyle, completion: Closure = null) Open window modally usign the specified transition style.

  • func close(animated: Bool = true) Close window if modally opened.

  • func pop(animated: Bool = true) Pops the top Windows/Navigations from the navigation stack and updates the display.

  • func popToWindow(window: Window or NavigationBar, animated: Bool = true) Pops Windows/Navigations until the specified Window is at the top of the navigation stack.

  • func popToRootWindow(animated: Bool = true) Pops all the Windows/Navigations on the stack except the root Window/Navigation and updates the display.

  • func setNavigationBarHidden(hidden: Bool, animated: Bool = true) Sets whether the navigation bar is hidden.

Enums

StatusBarVisibility

  • .Default
  • .Hidden
  • .Visible

StatusBarStyle

  • .DarkContent
  • .Default
  • .LightContent

TransitionStyle

  • .Cards
  • .CoverVertical
  • .CrossDissolve
  • .Crossfade
  • .Cube
  • .Default
  • .Explode
  • .Flip
  • .FlipHorizontal
  • .Fold
  • .NatGeo
  • .NotAnimated
  • .PartialCurl
  • .Portal
  • .Turn