
Hi,
Please let's know how I can add MPVolumeView control in my iPhone application?
Thanks

Hello,
You can use the following code:
MPVolumeView *volumeView = [[[MPVolumeView alloc] initWithFrame:
CGRectMake(0, 0, 105, 15)] autorelease];
volumeView.center = CGPointMake(152,372);
[volumeView sizeToFit];
[self.view addSubview:volumeView];
Aslo don't forgot to add MediaPlayer.framework in your project.
Thanks
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.