iOS webview leaves empty space before HTML content
I have the simplest view. A webview with some static HTML code embedded using the loadHTMLString message. The only thing I've modifed in the webview's properties from the storyboard is the "Scale page to fit" property (it's checked). However, as you can see in the image below, there's an empty space above the HTML that belongs to the webview (if I scroll the content it fills up that space). I've even tried just using... <html> <body><h1>Hello</h1></body> </html> ... but the space is still there (so I don't think it has anything to do with the HTML code). How can I remove that space? iOS