user4654045
user4654045

Reputation:

How to remove grey shadow on the top UIWebView when overscroll in swift?

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

Answers (2)

kalpa
kalpa

Reputation: 982

And this is the answer for Objective-C:

self.navigationController.navigationBar.translucent = NO;

Upvotes: 1

Govind Rakholiya
Govind Rakholiya

Reputation: 295

you just have to set navigationbar translucent to false

navigation.navigationBar.translucent = false

Upvotes: 2

Related Questions