Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save takuma104/56949 to your computer and use it in GitHub Desktop.
Save takuma104/56949 to your computer and use it in GitHub Desktop.
// iPhoneSDK: Scrollable NavigationBar (with TableView)
self.tableView.tableHeaderView = self.navigationController.navigationBar;
CGRect n = self.navigationController.navigationBar.frame;
CGRect v = self.navigationController.view.frame;
v.origin.y -= n.size.height;
v.size.height += n.size.height;
self.navigationController.view.frame = v;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment