I have an iPhone app that uses a UITableView with the UITableViewDelegate/UITableViewDataSource protocols. I'm struggling to do multi-select for deletion (not checkboxes, just the standard "-" delete button).
The basic problem is that when I click "edit," put the table view into edit mode, and then start clicking "-" buttons, I can only ever have one rotate to pipe ("|") position at a time.
Every time I select a different row for deletion, the last one I chose rotates back to ("-") -- "do not delete" -- position.
The delete buttons are behaving like radio buttons, not check boxes....
I assume this must be simple but I've dug and dug through documentation and the google to no avail. Any ideas?
Thanks in advance --