views:

150

answers:

2

my ViewController will start draw under of NavigationBar it will reduce ViewController to 436*320 pixels how can i force it to draw in full screen 480*320

A: 

You could hide the navigation bar:

- (void) viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [[self navigationController] setNavigationBarHidden:YES animated:NO];
}
Alex Reynolds
if i dont want to hide navigationbar?
RAGOpoR
A: 

Modal view? -presentModalViewController:animated:, you can set the style (slide up, flip, dissolve, page curl) with the modalTransitionStyle property (on the view controller to become modal)

Jared P