In a test iOS app i have added a UIWebView that is display a webpage. What i want is not to display the header and footer of this webpage. The header and footer is let us say almost 100 pixels. Is there any way i can just hide this portion in the UIWebView?
What i have already tried is that i moved the UIWebView in my StoryBoard in such a way that the 100 pixels are behind the navigation bar. This makes the content of the UIWebView looks exactly what i want but user can still see it if he scrolls and hold and also when it bounces. So that is not a good solution to present. The second thing i have done is to disable the bounce effect but that makes the whole thing very fixed and it is also not a good solution.
How can i make it to hide the certain portion of the content at the top and at the bottom in the UIWebView? Thanks!