[Solved] How to hide Navigation Bar? [closed]


Try out this to remove the navigation bar.

(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; 
   // Override point for customization after application launch. 
   MasterViewController *masterViewController = [[[MasterViewController alloc] initWithNibName:@"MasterViewController" bundle:nil] autorelease]; 
   self.window.rootViewController = masterViewController; 
   [self.window makeKeyAndVisible]; return YES;
}

1

solved How to hide Navigation Bar? [closed]