I’m looking for design examples (frontend) of how to let the users add an item in ‘Edit’ mode in any position they want in a tableview. This is for a iPhone/iPad universal checklist app I’m creating.
At the moment I can only find examples where new items are added in the top or bottom, and then moving them around. But non where the user can specify the insert position of the new item.
I was thinking of letting the users select a row and then the new item would be inserted below it. The problem with this option is that I also want the ‘tap a row’ functionality to be reserved for entering an expanded edit mode (which pushes a different view), where the user can edit the details of the checklist item.
Any suggestions?
Thanks
How about a “>”-shaped button off to the left or right between each cell that you can tap to insert one there?
Some apps also let you pinch two cells apart to have a new cell appear at that position.