How can I achieve a blur on a UINavigationBar
similar to the one found in the Apple photos app?
When I use this code I cannot even see my bar:
[self.navigationController.navigationBar setBackgroundImage:[UIImage new]
forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [UIImage new];
self.navigationController.navigationBar.translucent = YES;
self.navigationController.view.backgroundColor = [UIColor whiteColor];
And in AppDelegate.m
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];