I'm currently using iOS7, and I'm trying to set the Navigation Bar to translucent, with a clear colour background, because I have a background that I want to show through the navigation bar. However, it is proving much more difficult than anticipated, as I can't change the alpha without changing the overall colour of the bar itself. Here is where the bulk of the code affecting this is.
self.deckDropDown.tableView.backgroundColor = [UIColor clearColor];
[self.deckDropDown.layer setBorderWidth:1];
[self.deckDropDown.layer setBorderColor:[UIColor colorWithWhite:0.90 alpha:1.0].CGColor];
self.deckDropDown.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = tempImageView;
self.navigationController.navigationBar.translucent = YES;
self.navigationController.view.backgroundColor = [UIColor clearColor];
If anyone could help me out with this rather frustrating problem, it'll be much appreciated!
Thanks!