Hi,
I have a UINavigationController and a UITableView.
I want the user to be able to:
- Add a new row.
Move back to the previous UIViewController. These two actions are supported by the following design pattern:
[[Back] Title [+]]
However if I also want the user to be able to edit the list, how then do I do this? There is no position for the Edit button. Unless I replace the [+] symbol with an Edit button:
[[Back] Title [Edit]]
When the edit button is clicked this becomes:
[Done] Title [+]
--------------------
(-) Row name (=)
(-) Row name 2 (=)
Is this a valid solution?