Skip to content

Instantly share code, notes, and snippets.

@soheil-zz
Created April 23, 2015 01:11
Show Gist options
  • Save soheil-zz/85bfb2f672b4795038ba to your computer and use it in GitHub Desktop.
Save soheil-zz/85bfb2f672b4795038ba to your computer and use it in GitHub Desktop.
- (void)statusBarSize
{
RCT_EXPORT();
CGRect statusBarFrame = [[UIApplication sharedApplication] statusBarFrame];
[self.bridge.eventDispatcher sendDeviceEventWithName:@"statusBarSize"
body:@{@"width": [NSString stringWithFormat:@"%f",statusBarFrame.size.width],
@"height": [NSString stringWithFormat:@"%f",statusBarFrame.size.height]}];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment