Skip to content

Instantly share code, notes, and snippets.

@tomgilder
Created November 26, 2013 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomgilder/7661355 to your computer and use it in GitHub Desktop.
Save tomgilder/7661355 to your computer and use it in GitHub Desktop.
#if LAUNCHIMAGE
private void SayCheeseForLaunchImage()
{
UIView statusBar = (UIView) UIApplication.SharedApplication.ValueForKey(new NSString("statusBar"));
UIView foregroundView = (UIView) statusBar.ValueForKey(new NSString("foregroundView"));
foregroundView.Hidden = true;
UILabel.Appearance.TextColor = new UIColor(0, 0, 0, 0);
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment