padmanibhavesh / SwiftDemos

Practice of Apple Swift Programming Language
0 stars 0 forks source link

Todo App #1

Open mohammad- opened 9 years ago

mohammad- commented 9 years ago

Home Screen

  1. Todo Item List Screen

    • Title in navigation bar should be ToDos
    • Navigation Bar contains two buttons

      a. edit

      Show Table view in edit mode and when any cell is deleted, delete item associated with it. When any cell is edited, Move to new controller where user can edit item.

      b. add

      Show new controller where user can register new item with all required entry field

    • In a table view show list of items. Each item contains following element.

      a. Title text

      b. Details of Item text

      c. Location text

      d. Due Date show date picker and show value related to it

      • All items are stored in db as using core data. Only show future items.
mohammad- commented 9 years ago

Add Item Screen

  1. Add input fields for respective items
  2. date should be added using date picker
  3. everything else is text
  4. add save button
  5. on click of save button, save data in db using core data, move back to previous controller and refresh the list to show new items