我正在尝试将我的iOS适应iOS7。我设法修复了大多数错误,但我不明白的是我的 UIToolbar 的 barStyle 不再工作。
我使用了以下代码:
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height, 320, 44)] ;
toolBar.barStyle = UIBarStyleBlackTranslucent;
它在iOS 6上运行良好,但在iOS 7上,我得到的只是一个灰色条,我无法更改它。我该如何解决这个问题?
非常感谢
尝试:
toolBar.tintColor = [UIColor blackColor];