Skip to content

Instantly share code, notes, and snippets.

@wh1pch81n
Created April 26, 2016 14:00
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 wh1pch81n/ef921944f732de1c45bb93646b462d6f to your computer and use it in GitHub Desktop.
Save wh1pch81n/ef921944f732de1c45bb93646b462d6f to your computer and use it in GitHub Desktop.
UIView *getStatusBar() {
UIView *subViewWindow = [[UIApplication sharedApplication] valueForKey:@"statusBarWindow"];
for (UIView *i in subViewWindow.subviews) {
if ([i isKindOfClass:NSClassFromString(@"UIStatusBar")]) {
return i;
}
}
return nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment