I found code online for removing the status bar in iOS (most of it very old), and while the background is removed, it's contents are still being rendered.
At the top of this image (my app in portrait mode, brightness enhanced), you can see the clock, battery indicator, et al. being drawn right over my app:
How do I get rid of this?
I'm currently using the following in main.cs to remove the status bar:
UIApplication.SharedApplication.SetStatusBarHidden (true, UIStatusBarAnimation.None);
This is a Page in a Forms app that consists of a single SKCanvasView, if that's relevant.