I'm tthinking that maybe its my flipview method thats doing it.
Quote:
playViewController *aPlayViewController = [[playViewController alloc] initWithNibName:@"playView" bundle:nil];
[self setPlayViewController:aPlayViewController];
[aPlayViewController release];
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.8];
[UIView setAnimationTransition:UIViewAnimationTransitionFl ipFromLeft forView:window cache:YES];
[viewController.view removeFromSuperview];
[self.window addSubview:[aPlayViewController view]];
[UIView commitAnimations];
|
playViewController is my viewcontroller and "playView" is my xib file.
It work but my Toolbar float 10-14 pixels abow the bottom!!
Any help would be nice!