'UIStatusBarAnimation style .slide not working in iOS 15

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?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source