I am new to cocoa touch programming.
Is there a widget/control in cocoa touch which will let me display a list of strings:
Apple
Mango
Papaya
…
and lets the user:
- edit the strings in-place
- add strings in between the existing items in the list.
- delete existing strings
- move the strings up/down one row.
Is there a widget that lets me do some of items 1 to 4, if not all of them?
Thank you for reading.
There is no control to do that.
But you could achieve your control by subclassing UITableViewController
You’ll have access to a list. And with a few setting you’ll be able to move, add, and delete items.
You should read the Apple guide about using Table View 🙂