views:

25

answers:

1

Hi , is it possible to remove or hide the edit button completely on the UITableView?

Basically, it's an information app, and I don't want users to accidentally delete cells :(

Thanks

+2  A: 
[self.tableView setEditing:NO];
Jonas Wouters