Reputation:
I'm using UIWebView for show a simple HTML page. When I scroll the page (over the top or over the bottom) a shadow gray appears behind. Please provide me solution in swift.
Upvotes: 0
Views: 784
Reputation: 982
And this is the answer for Objective-C:
self.navigationController.navigationBar.translucent = NO;
Upvotes: 1
Reputation: 295
you just have to set navigationbar translucent to false
navigation.navigationBar.translucent = false
Upvotes: 2