A list of to-do items
When starting the app (the one we are going to build), the user sees a list of to-do items on the screen of their iOS device. The items in the list consist of a title, an optional location, and the due date. New items can be added to the list by using an add (+) button, which is shown in the navigation bar of the view. The task list view will look like this:
As a user, I have the following requirements:
- I want to see a list of to-do items when I open the app.
- I want to add to-do items to the list.
In a to-do list app, the user will obviously need to be able to check off items when they are finished. The checked items are shown below the unchecked items, and it is possible to uncheck them again. The app uses the Delete button in the UI of the table view to check and uncheck items. Checked items will be put at the end of the list in a section with the Done header. The UI for the...