TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Mark Rickert.
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.
#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: