Livecode Wiki
Advertisement

Controls the style of the iOS status bar. Syntax:

iphoneSetStatusBarStyle style

Examples:

iphoneSetStatusBarStyle tStyle
iphoneSetStatusBarStyle "translucent"

Use iphoneSetStatusBarStyle to change the style of the iOS status bar. The style can be:

  • default - The default mode for the device.
  • translucent - Semi-transparent status bar (in this case the stack appears underneath it).
  • opaque - A black status bar (in this case the stack appears below it in pre-iOS 7, and underneath it in iOS 7+).
  • solid - A black status bar (in this case the stack appears below it).

See Also: mobileHideStatusBar Command, mobileShowStatusBar Command

Advertisement