2

我正在尝试使我的 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 上我得到的只是一个灰色条,我无法更改它。我怎样才能解决这个问题?

非常感谢

4

1 回答 1

3

尝试:

 toolBar.tintColor = [UIColor blackColor];
于 2013-09-23T16:58:22.157 回答