UIWebView-RemoveShadow

iOS UIWebView category to remove the top and bottom shadow that Apple automatically adds to every webview. This is particularly useful if you want to use HTML to create a view in your application that's scrollable and want to use your own self.view.backgroundColor or similar.

MIT License

Stars
34
Committers
1

UIWebView+RemoveShadow

iOS UIWebView category to remove the top and bottom shadow that Apple automatically adds to every UIWebView.

This is particularly useful if you want to use HTML to create a view in your application that's scrollable and want to use your own self.view.backgroundColor or similar.

Example Usage

#import "UIWebView+RemoveShadow.h"

Then in your -(void)ViewDidLoad method:

[self.yourWebview makeTransparentAndRemoveShadow];

That's it! Now when your user scrolls up and down on your UIWebView, they won't see the shadows.

Turns this:

Into this:

Package Rankings
Top 13.02% on Cocoapods.org
Related Projects