Reputation: 81
I am writing a TableView application that takes the user to a single view when selecting a cell in the table. When I swipe to go back to the TableView, I see this grey area above the TableView that minimizes as the large title appears. How do I change the color of this grey area? I've tried setting the TableView's Header background to another color but that doesn't work. Any advice?
TableView:
Going back:
Upvotes: 1
Views: 369
Reputation: 81
I found the fix! To fix this issue set the NavigationBar's isTranslucent property to true
self.navigationController?.navigationBar.isTranslucent = true
Upvotes: 1