Search Results

Search found 2 results on 1 pages for 'aeolai'.

Page 1/1 | 1 

  • Make staus bar visible without overlapping view

    - by aeolai
    Hello, I have a tab bar with two views. In the first view the iPhone status bar is hidden using [[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES]. When the second view is loaded, and the status bar is made visible again using [[UIApplication sharedApplication] setStatusBarHidden:NO animated:YES] it overlaps the view. How do I make the status bar visible again without overlapping the second view? Thanks

    Read the article

  • How to add button to UINavigationController.

    - by Aeolai
    I have the following code with adds a navigation controller to a modal view. The nav bar and view all appear ok, but the right button does not. What am I doing wrong? UpgradesViewController* upgradesViewController = [[UpgradesViewController alloc] initWithNibName:@"UpgradesView" bundle:nil]; upgradesViewController.title = @"Upgrades"; UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:upgradesViewController]; navController.modalTransitionStyle = UIModalTransitionStyleCoverVertical; navController.navigationBar.barStyle = UIBarStyleBlack; UIBarButtonItem* doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Show" style:UIBarButtonItemStylePlain target: self action:nil]; navController.navigationItem.rightBarButtonItem = doneButton; [self presentModalViewController:navController animated:YES]; [navController release]; [upgradesViewController release];

    Read the article

1