iOS7 UIStatusBar模糊不正确

我正在使用UIToolbar作为屏幕顶部的控件(没有导航控制器)工具栏具有我想要的外观,但状态栏完全清晰。 我似乎无法模仿UIToolbar在其透明度方面的模糊。 有没有人遇到过不需要使用导航控制器的解决方案?

滚动状态栏后面的内容

滚动状态栏后面的内容

UIBarPosition演示

为了实现这一目标,您需要在UIBarPositioningDelegate协议中实现方法:

https://developer.apple.com/library/ios/documentation/uikit/reference/UIBarPositioningDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/UIBarPositioningDelegate

这是代码:

@interface ViewController : UIViewController  @property (nonatomic, weak) IBOutlet UIToolbar * toolbar; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; //we become the delegate self.toolbar.delegate = self; } -(UIBarPosition)positionForBar:(id)bar{ //this tells our bar to extend its background to the top. return UIBarPositionTopAttached; } @end