Search code examples
iosobjective-ccocoa-touchios7uinavigationcontroller

iOS 7 complete UINavigationBar transparency


I'm trying to make this transparency look in a ViewControllers Navigation bar:

WANTED:

enter image description here

Till now i got only this done. The bar is not losing its color:

enter image description here

Used code:

self.navigationController.navigationBar.barTintColor = [UIColor clearColor];
self.navigationController.navigationBar.translucent = YES;

Any idea how to fix this?


Solution

  • Try this:

    [self.navigationController.navigationBar setBackgroundImage:[UIImage new]
                             forBarMetrics:UIBarMetricsDefault];
    self.navigationController.navigationBar.shadowImage = [UIImage new];
    self.navigationController.navigationBar.translucent = YES;
    

    And in Swift

    self.navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: .Default)
    self.navigationController?.navigationBar.shadowImage = UIImage()
    self.navigationController?.navigationBar.translucent = true