views:

116

answers:

1

Hi !

My app runs fullscreen no status bar but when OF starts and asks for which account to use, a status bar appears... How can I disable this ? Note that when the OF connection window closes it leaves a white rectangle in place of the status bar. Thanks for your help.

--G.

A: 

I don't know if I was missing something but here is how I fixed it. In my OF delegate implementation if added this:

- (void)dashboardDidDisappear
{
   MyAppDelegate *appDelegate = (MyAppDelegate *)[[UIApplication sharedApplication] delegate];

   [[[appDelegate viewController] view] setFrame:CGRectMake(0.0, 0.0, SCREEN_HEIGHT, SCREEN_WIDTH)];
}

having defined SCREEN_WIDTH and SCREEN_HEIGHT accordingly...

I hope this will help...

Big Papoo