0

How to solve this problem?

enter image description here

click Add button open image video add

enter image description here

After disble imagepickerview show this view

enter image description here

How can i solve this problem?

Ketan Ubhada
  • 275
  • 3
  • 14

2 Answers2

1

Try This code :

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
  {
      [[UIApplication sharedApplication] setStatusBarHidden:YES];
  }
Darshak
  • 2,298
  • 4
  • 23
  • 45
0
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {
        [application setStatusBarStyle:UIStatusBarStyleLightContent];
        self.window.clipsToBounds =YES;
        self.window.frame =  CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);

        self.window.bounds = CGRectMake(0, 20, self.window.frame.size.width, self.window.frame.size.height);
    }

    return YES;

}
codercat
  • 22,873
  • 9
  • 61
  • 85