Reputation: 29
Does anyone know if it's possible to remove the topbar from a UITableView in code? So in this case, remove the "Books" bar?
Upvotes: 2
Views: 2034
Reputation: 243146
[[self navigationController] setNavigationBarHidden:YES];
Upvotes: 5