 |
BB10: Splash Screen / Page Load Event
Each time I've learned a new mobile platform, the first app I implement is my "Baby Names" app.
The first step is to implement the splash screen.
As I noted in an earlier post, this involved a custom timer control.
But to start the timer, I need a page loaded event, or something similar. I don't see that in the reference documentation for "Page".
Asked question:
http://supportforums.blackberry.com/t5/Cascades-Development/Page-load-event-in-QML/td-p/1783941
The answer is to use:
onCreationCompleted: { splashTimer.start (); }
|
|
This signal is part of UIObject and inhereted by Page, which is why I didn't see it when I looked at the documentation for Page. |
|
 |