Quote:
Originally Posted by baja_yu
I'm not sure what to tell you without more details and code. Try putting a breakpoint and stepping through the code to see at which point it happens and examine the code there.
|
There are no errors and the breakpoints didn't stop anywhere.
There was a problem with my .xib file's alignment (There were white bars on bottom of both views). So inserted this code into both views-
[code]
-(void)viewWillAppear

BOOL)animated{
self.view.frame = [[UIScreen mainScreen]applicationFrame];
}
/CODE]
It took away the white bars but when I switch views now it's still there but only for a second then it disappears.
Which brings me to my question, iF there is code to get rid of the white bar why does it still appear.
Thanks.