我需要一个透明状态栏,如下图所示。
我试过这个,
UIView *statusBar = [[[UIApplication sharedApplication] valueForKey:@"statusBarWindow"] valueForKey:@"statusBar"];
if ([statusBar respondsToSelector:@selector(setBackgroundColor:)]) {
statusBar.backgroundColor = [UIColor clearColor];
}
但这基本上给出了与UIStatusBarStyleLightContent相同的结果。