Skip to content

Instantly share code, notes, and snippets.

Created March 21, 2012 10:55
Show Gist options
  • Save anonymous/2146167 to your computer and use it in GitHub Desktop.
Save anonymous/2146167 to your computer and use it in GitHub Desktop.
hiding navigation bar
- (void) openNear
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone)
{
nearViewController = [[NearViewController alloc] initWithNibName:@"NearViewController_iPhone" bundle:nil];
}
else
{
nearViewController = [[NearViewController alloc] initWithNibName:@"NearViewController_iPad" bundle:nil];
}
navController.navigationBar.hidden = YES;
[navController pushViewController:nearViewController animated:YES];
navController.navigationBar.hidden = YES;
[nearViewController release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment