可以改变MPMediaPickerController导航栏的颜色吗?

时间:2010-08-18 12:52:00

标签: iphone uinavigationbar mpmusicplayercontroller

我有一个MPMediaPickerController,让用户可以在我的应用中选择他/她自己的歌曲。问题是我的应用程序始终有“黑色”导航栏,而选择器是标准蓝色。现在我知道不允许/不可能将选择器子类化,但有没有其他方法可以将导航栏更改为“黑色”?

1 个答案:

答案 0 :(得分:-1)

我最终做了一个类别。

@implementation UINavigationBar (CustomImage)
- (void)drawRect:(CGRect)rect {
    UIImage *image = [UIImage imageNamed:@"CustomNavBar.png"];
    [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)];

    self.barStyle = UIBarStyleBlack;
}

然而,这将改变所有导航栏。