bear
bear

Reputation: 11605

Remove edit button from UITableView?

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

Upvotes: 4

Views: 1086

Answers (1)

Jonas Wouters
Jonas Wouters

Reputation: 707

[self.tableView setEditing:NO];

Upvotes: 5

Related Questions