此代码在物理iPhone 6上可以正常工作,但在iOS模拟器上,MPVolumeView不显示。

- (void)setUpVolumeView
{
    CGRect sliderRect = CGRectMake(20, 400, 300, 20);
    self.myVolumeView = [[MPVolumeView alloc] initWithFrame:sliderRect];
    [self.view addSubview: self.myVolumeView];
}
self在这种情况下是ViewController。

有人知道为什么会这样吗?

最佳答案

据我的内存,MPVolumeView从来没有在模拟器中工作过。它始终不显示任何内容,或者始终以白色显示“没有可用的音量”。

关于ios - MPVolumeView未在iOS模拟器中显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29783131/

10-14 21:53