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
views:
150answers:
2
A:
You could hide the navigation bar:
- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[[self navigationController] setNavigationBarHidden:YES animated:NO];
}
Alex Reynolds
2010-06-04 09:41:10
if i dont want to hide navigationbar?
RAGOpoR
2010-06-04 10:18:05
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
2010-08-15 02:11:09