NativeScript / nativescript-marketplace-demo

NativeScript kitchen sink demo. All of NativeScript’s functionality in one app.
http://www.nativescript.org
Apache License 2.0
325 stars 97 forks source link

fix: Crash due to writing to statusBarStyle #308

Closed mbektchiev closed 5 years ago

mbektchiev commented 5 years ago

The latest iOS Runtime exposes UIApplication's statusBarStyle property as read-only because write access to it has been deprecated since iOS 9.0. The status bar's style is automatically adjusted and this code should not be needed.

See https://developer.apple.com/documentation/uikit/uiapplication/1622988-statusbarstyle?language=objc

The new behavior in iOS is introduced with NativeScript/ios-runtime#1100