Is it possible to have a background image extend into the unsafe areas? I tried the following to set a background image to the Super View and it doesn't work.
// viewDidLoad
override func viewDidLoad() {
    super.viewDidLoad()
    // Set up background image
    let backgroundImage = UIImageView(frame: super.view.bounds)
    backgroundImage.image = UIImage(named: "SpaceBackground")
    backgroundImage.contentMode = UIView.ContentMode.scaleAspectFill
    self.view.insertSubview(backgroundImage, at: 0)
}
