Button is pressed from the Mainviewcontroller which presents view and from this view when infobutton is pressed to present Modalviewcontroller and when ModalViewController is dismissed to go back to view. And once view is loaded UIToolbar shows gap from the bottom and gap is of UIToolbar height.
- (void)displayviewsAction:(id)sender
{
self.view = [[[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]]autorelease];
[self.view setFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
PageOneViewController *viewController = [[[PageOneViewController alloc] init]autorelease];
[self.view addSubview:viewController.view];
[self.view addSubview:toolbar];
}
- (void)modalViewAction:(id)sender
{
ModalViewController *controller = [[ModalViewController alloc] init];
controller.delegate = self;
UINavigationController *navigationController = [[UINavigationController alloc]
initWithRootViewController:controller];
navigationController.navigationBar.tintColor = [UIColor brownColor];
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:navigationController animated:YES];
[navigationController release];
}
Anyone knows how to fix it.
Thanks for help.
