Skip to content
kerrishotts edited this page Nov 14, 2012 · 2 revisions

(part of PKUI.CORE)

Return Type: void

Parameters: theView ( view )

Pushes theView onto the viewStack, and makes sure it is visible. If the view defines them, viewWillAppear() and viewDidAppear() will be called as well.

Example:

PKUI.CORE.showView ( testView1 );

Notes

  • Generally only called to display the first view for the app (when there is nothing on the view stack).
  • Can be used to manually handle view management when working on tablet apps (such as split-screen or master-detail)
  • If theView obscures another view, no attempt is made to call viewWillhide and/or viewDidHide.

Version

0.1 Introduced

0.2 Docs Valid

Clone this wiki locally