user140983
user140983

Reputation: 29

Removing the bar in standard UITableView programmatically

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

Answers (1)

Dave DeLong
Dave DeLong

Reputation: 243146

[[self navigationController] setNavigationBarHidden:YES];

Upvotes: 5

Related Questions