-
Notifications
You must be signed in to change notification settings - Fork 29
PKUI.CORE.showView
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 );
- 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 callviewWillhide
and/orviewDidHide
.
0.1 Introduced
0.2 Docs Valid