I am using xcode 4.2 with storyboard to create an iphone app.
When I press the edit button in the top right corner I would like to have the options to delete the exi
This tutorial is worth a read and should help you. It shows how to setup an 'Add new row' UITableView row at the bottom of a UITableView, but you should be able to make this appear at the top of your UITableView within your implementation of:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
e.g.
if(self.editing && indexPath.row == 1)
{
cell.text = @"Insert new row";
...
Hope this helps!