UIStatusBarAnimation style .slide not working in iOS 15

273 Views Asked by At

Following with the UIViewController worked until iOS 15. Status bar animated with the 'slide' method. Now it just fades away.

self.setNeedsStatusBarAppearanceUpdate()


override final var prefersStatusBarHidden : Bool {
    return false
}

override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation {
    return .slide
}

Is this a bug?

0

There are 0 best solutions below