Our final application: Movie Night
The final application we will make is called Movie Night and the idea of the app is to be able to write down one's favorite movies:
The interface will have a couple of different elements. First of all, the view will have a title in the top middle. In the upper-right corner, there will be a small button with a plus symbol on it, which will enable the user of the app to add a movie to the list. The main area of the application will contain a list of the added movies. When the user swipes from right to left on a specific item in the list, a button with the Delete label will appear; tapping that button will make the item on the list disappear.
In general, unless one has a strategy for saving data either on the phone or through a web interface, the data will be lost when the user closes the app. This means that all the movies one might have added to the list will disappear the second the user closes the app. To avoid this, we will write some simple code...