1

我正在尝试将 MPVolumeView 的实例添加到导航控制器的底部栏。(工具栏框已打勾)我的代码没有出现任何错误,但是当我在设备上运行项目时,音量滑块不是显示。提前感谢您的任何建议,这是我的代码:

@interface ViewController ()
{
AVPlayer *vPlayer;
AVPlayerItem *playerItem;
UISegmentedControl *segm;
UIToolbar *toolbar;
}
@end

@implementation ViewController
@synthesize myViewVolume;
@synthesize nowPlaying;

- (void)viewDidLoad
{
[super viewDidLoad];
playerItem = [AVPlayerItem playerItemWithURL:[NSURL URLWithString:@"http://vibesradio.org:8000  /listen.pls"]];
vPlayer = [[AVPlayer alloc] initWithPlayerItem:playerItem];
[playerItem addObserver:self forKeyPath:@"timedMetadata" options:NSKeyValueObservingOptionNew context:NULL];


//self.myViewVolume = [[MPVolumeView alloc] initWithFrame:CGRectMake(20, 330, 280, 50)];


self.myViewVolume = [[MPVolumeView alloc] initWithFrame: toolbar.bounds];
[self.myViewVolume sizeToFit];
[self.view addSubview:toolbar];
[toolbar addSubview:self.myViewVolume];

}
4

1 回答 1

2

您不能将子视图添加到工具栏。您必须添加一个 UIBarButtonItem,其视图是您要显示的视图。

UIBarButtonItem* b = [[UIBarButtonItem alloc] initWithCustomView: myVolumeView];
myToolbar.items = @[b];

这与 MPVolumeView 无关。您想添加到工具栏或导航栏的任意视图都是如此。

这是在我的设备上为导航界面中的视图控制器工作的实际代码:

MPVolumeView* vv = [[MPVolumeView alloc] initWithFrame: CGRectMake(0, 0, 150, 40)];
UIBarButtonItem* b = [[UIBarButtonItem alloc] initWithCustomView: vv];
self.toolbarItems = @[b];
self.navigationController.toolbarHidden = NO;

还要注意,您必须在设备上进行测试;模拟器中没有音量视图的界面。:(

于 2012-12-01T21:46:14.270 回答