...

/

Passing Parameters to Views and SerializeData

Passing Parameters to Views and SerializeData

Learn how to add a delay to display our contact list until all the contacts are loaded.

Let’s take a step back and think about our app for a second. Our List controller displays a loading view saying that data is being loaded with an artificial delay. However, that’s not true. We need some way to display a different loading message for our List submodule.

We could simply add a new template with a different loading message and provide the proper template when instantiating the view, as we saw earlier. It would work, but it would be a dirty hack.

Given that our loading view is intended to ...