UIAlertView に MPVolumeView を配置することは可能ですか?
中に入れてみましたが表示されません。それは、sizeToFit
またはinitWithFrame:
一部である可能性がありますか?MPVolumeView
が実際に作成されているかどうかをテストする方法はありますか?
UIAlertView
との両方を初期化するコードは次のMPVolumeView
とおりです。
UIAlertView *volumeAlert = [[UIAlertView alloc] initWithTitle:@"Volume" message:@"" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame:volumeAlert.bounds];
[volumeAlert addSubview:volumeView];
[volumeAlert sizeToFit];
[volumeAlert show];
[volumeAlert release];
[volumeView release];