Since it’s UIApplication.shared.setStatusBarStyle(.default, animated: true)deprecated from iOS9, is it possible to change the style of the status bar with animation on push? I can not find descriptions in the docs.
UIApplication.shared.setStatusBarStyle(.default, animated: true)
push
Now this is a variable that you must override:
override var preferredStatusBarStyle: UIStatusBarStyle override var preferredStatusBarUpdateAnimation: UIStatusBarAnimation
Depending on when you update the status bar, you may also need to call setNeedsStatusBarAppearanceUpdate()
setNeedsStatusBarAppearanceUpdate()
If you want to set the status bar style, then set the application level UIViewControllerBasedStatusBarAppearanceto NOin your .plistfile.
UIViewControllerBasedStatusBarAppearance
NO
.plist
, , :
YES
addDidLoad add - setNeedsStatusBarAppearanceUpdate
setNeedsStatusBarAppearanceUpdate
StatusBarStyle .
-
override func viewDidLoad() { super.viewDidLoad() self.setNeedsStatusBarAppearanceUpdate() } override var preferredStatusBarStyle: UIStatusBarStyle { return .lightContent }
.plist .
, .lightContent .default, , , - .
.lightContent
.default
UIView.animate(withDuration: 0.2) { [weak self] in self?.setNeedsStatusBarAppearanceUpdate() }
, , .
override var preferredStatusBarStyle: UIStatusBarStyle { return lightStatusBar ? .lightContent : .default // return .lightContent }
Source: https://habr.com/ru/post/1670770/More articles:Python - выберите словарь в списке, который ближе к глобальному значению - pythonNginx location configuration (subfolders) - httpUsing an SVG filter to create an internal beat - svgHow to join 3 files using awk? - awkAfter adding [(ngModel)] to the default switch group, [checked] no longer works - angularWhat are the JavaScript version numbers and which version of ECMAScript do they match? - javascriptApply a function between the rows grouped by a variable, calculating all possible combinations between the variable in another column - rUnable to import plotly.figure_factory - pythonHow to disable events.out.tfevents file in tf.contrib.learn Estimator - pythonПоиск размера графемного кластера в Rust - rustAll Articles