Currently, I am using the following process:
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView
editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}
to delete a row in a tableView.
I am using the swipe functionality to get the red delete button. But I feel this is still a bit painful process for the user. Is there a way in which i can delete the row without having the swipe action? Can I customize the entire process of deleting a row using tableView delegate methods? Is it possible to customize the red delete button to something else so that it gives a different look and feel to the user?