MPVolumeView is a class from MediaPlayer framework in iOS. Used to present the user with a slider control for setting the system audio output volume, and a button for choosing the audio output route.

learn more… | top users | synonyms

0
votes
0answers
16 views

How to check MPVolumeView's route button is visible

Is there any methods which can check the MPVolumeView's route button is visible on iPad? Now i can access the route button through the below code, but i have no idea why i check the button's hidden, ...
0
votes
1answer
82 views

MPVolumeView AirPlay button not showing up

Using MPVolumeView I wanted to create an AirPlay output button for the app's audio. MPVolumeView *volumeView = [ [MPVolumeView alloc] initWithFrame:CGRectMake(20, 20, 220, 20)]; [volumeView ...
0
votes
0answers
93 views

Is it possible enable AirPlay for specific AVAudioPlayer instances

I have an app with multiple AVAudioPlayer instances. One instance is for background music and the other instances are sound effects. I want the user the to have the ability to have the music routed ...
1
vote
2answers
124 views

MPVolumeView thumb image not Centre

I am using MPVolumeView for my App. I have Customized the MPVolumeView but there's a problem as the thumb image of slider not Properly set.
0
votes
0answers
95 views

Cocos2d 2.0: is it possible to detect volume change notifications (from MPVolume)?

EDIT: I found this other post saying that basically even if I am able to detect the volume change notification from when the user presses the button then those will be related to the ringers volume ...
1
vote
0answers
160 views

How do you programmatically access the volume level of a call on iPhone?

Currently, the only way to change the volume of a call is to use the volume buttons on the side of the phone. I find it annoying to have to fiddle around with those buttons when I'm on a call. I'm ...
1
vote
1answer
178 views

volume slider has no effect

I am creating a radio streaming app with play, pause and volume slider. I have implemented volume slider using MPVolumeView but unfortunately it is not working. Can any one please let me know the ...
0
votes
1answer
61 views

Is Apple likely to reject an app that messes with caller voice volume [closed]

Apple seems to be squeamish about apps that mess with volume control. 1)What are the odds that Apple would reject an app that lets the user select volume level for a contact? 2) MPVolumeView lets ...
0
votes
1answer
305 views

iOS: Missing audio routes/sources in MPVolumeView

I work on an audio app (using audio units). One of the requirements is to be able to change the audio route from the UI (Earpiece, Speaker, Connected Bluetooth device etc.). I use the MPVolumeView for ...
0
votes
1answer
223 views

Add MPVolumeView to bottom toolbar

I am trying to add an instance of MPVolumeView to the bottom bar of my navigation controller.(the box for toolbar is ticked) I do not get any errors with my code, but when I run the project on my ...
0
votes
1answer
112 views

MPVolumeVew slider not touch responsive

I am building radio APP, I have added UIView to my ViewController and changed its class to MPVolumeView. The slider appears when I test it on my device but is non-responsive to touch gestures. What's ...
3
votes
1answer
154 views

MPVolumeView slider disappears when audio session changes

it´s my first question here so I apologize in advance if I commit any mistakes on the format of my question. I have a settings screen in my app where I placed a UISlider to control the volume, I got ...
8
votes
2answers
386 views

AirPlay menu incorrectly displays in portrait on iOS 6

I'm using an AVPlayer and MKVolumeView to display the native AirPlay output menu. In iOS 6, the AirPlay output menu seem to be presented in portrait regardless of the orientation of the status bar. ...
0
votes
2answers
445 views

Hide volume bar in movie player

How can I hide the volume bar in movie player and keep the other controls are appear (play, forward ... ) ? I want to show some videos that haven't any sounds, so the volume bar is totally will be ...
0
votes
1answer
557 views

Default MPVolumeView Style

Why iOS 6 SDK still uses old MPVolumeView control's style. I want to use default style like in Apple's Default Music application. Old one: New one: Is there any way to use new one in my ...
0
votes
1answer
302 views

AVPlayer, MPVolumeView and Volume HUD

I'm using an AVPlayer to play various medias. I redesigned the whole player interface and I added a MPVolumeView to control output level. It works just fine, either with the slider or with the volume ...
1
vote
1answer
834 views

Adding MPVolumeview programmatically in app

Trying to add MPVolumeView programmtically in app by using the following code MPVolumeView *_volumeView = [ [MPVolumeView alloc] init]; [_volumeView setShowsVolumeSlider:YES]; [_volumeView ...
3
votes
2answers
243 views

How to keep the slider of MPVolumeView visible when connecting to Apple TV?

I'm using an MPVolumeView to control the volume of the AVPlayer in my app. When I connect use the Airplay-button next to the volume slider to connect to an AppleTV, the slider disappears. How can this ...
0
votes
2answers
300 views

How to change the tintcolor of the slider in a MPVolumeView?

How can I change the tintcolor of the slider in a MPVolumeView? Instead of blue I want to display a different color.
0
votes
1answer
516 views

iOS - Showing airplay button for my game app

I'm creating iPhone app for kids which they can play with alphabets and numbers. I want to providing the option for airplay so that playing on bigger screen will be more fun. I'm using the following ...
3
votes
1answer
294 views

How can improve MPVolumeView performance?

i'm working on a iOS project, related with video streamming. One of the controls in the UI is a MPVolumeView. The problem is that when i slide the control for change volume, it seems to use to much ...
2
votes
2answers
425 views

Control Master Volume - iPhone, Cocoa Touch

I'm wanting to control the master volume of the iPhone with a UISlider. There is a way of doing it without code and I've forgot how to. So code or within the xib, how do I do this? Thanks
6
votes
1answer
1k views

Custom MPVolumeView Thumb Image not vertically centered since iOS 5.1

I'm building an application that needs an MPVolumeView to control the volume. It worked perfectly before iOS 5.1 but since the 5.1 update the thumb image is no longer vertically centered. I tried a ...
0
votes
1answer
568 views

programatically change the color of mpvolumeview?

hai i am using MPVolumeView to display the system volume on my app. is their any way to change the color of that volume view like this my code is here //MPVolumeView will controll system volume, ...
0
votes
1answer
288 views

App audio volume

I making an app and a need to control the device volume, i've seen many solutions using volume view or AVAudioPlayer, but i want to use the device volume buttons to set the app volume, like many apps ...
0
votes
1answer
648 views

Preventing the volume HUD from appearing with MPMusicPlayerController, is it acceptable?

My issue is the HUD that accompanies a change in the MPMusicPlayerController's volume property. Whilst there is a solution, I want to know if it is acceptable by Apple to hide the MPVolumeView to ...
1
vote
2answers
1k views

MPVolumeView with XCode 4 (Storyboards)

How do you make a slider that adjusts the volume level of the device with storyboarding? I haven't found any information on this relevant to XCode 4. Is MPVolumeView still the way to go? If so, how do ...
0
votes
2answers
650 views

How to customize MPVolumeView in iOS?

I need to make a custom thumb for my volume slider, which I need it to be a MPVolumeView. Is there any way I can change it?
2
votes
1answer
849 views

Change the slider of an MPVolumeView

I have a class that extends UISlider (my custom slider) and i want to change the slider in MPVolumeView (MPVolumeSlider) with my custom slider. I can customize the slider in MPVolumeView but i can't ...
3
votes
0answers
352 views

Taparea of AirPlay button in MPVolumeView

I have a MPVolumeView with AirPlay button. When I tap the AirPlay button in the center of the icon it does not respond. It seems like the tap isn't recognized. When I tap the icon on the right side of ...
1
vote
2answers
192 views

Verify if iphone was connected to a dock

When I connect the iphone to a dock my app display the message: "Conector dock". I want to detect when the phone is connected with other device and hide the MPVolumeView to avoid those messages. I am ...
0
votes
1answer
282 views

Error in xcode when i try to compile using a MPVolumeView

xcode gives me that error: Undefined symbols for architecture i386: "_OBJC_CLASS_$_MPVolumeView", referenced from: objc-class-ref in VolumeViewController.o ld: symbol(s) not found for ...
1
vote
1answer
900 views

MPVolumeView and iOS 5

I am trying to make a slider to control device volume. Previously I have accomplished this with MPVolumeView, but since iOS 5 I get the following error on build: Undefined symbols for architecture ...
6
votes
1answer
849 views

Hide grey volume overlay when using MPVolumeView?

I've put a MPVolumeView over a movie I'm playing. The trouble is, whenever I adjust the vol using the MPVolumeView, then the standard grey volume overlay appears (the one that appears when you use the ...
0
votes
2answers
781 views

Can i control slider value programaticaly?

I have used following code for (UIView *view in [volumeView subviews]){ if ([[[view class] description] isEqualToString:@"MPVolumeSlider"]) { volumeViewSlider = (UISlider *) view; } ...
0
votes
0answers
334 views

MPVolumeView doesn't change through buttons before first touch

My MPVolumeView doesn't change through the hardware buttons before i move it with a finger. After the first change it does work like it should. It's a regular UISlider, class changed to ...
0
votes
1answer
201 views

How can i make sound on and off using my native iPhone Application?

I want to make sound On and Off thru my Native iPhone Application so please give me some suggestion for doing that.It's only up to my Native application.
2
votes
2answers
1k views

AirPlay Meta Data on Apple TV from App (AVPlayer - MPVolumeView)

I have my app successfully streaming an MP3 via AVPlayer. I implemented a MPVolumeView to pull in AirPlay support which works great but I notice that the title info on my apple tv, does not show ...
2
votes
3answers
3k views

How to add the MPVolumeView via Xcode Designer?

I originally added an MPVolumeView dynamically on to a page... #import "MediaPlayer/MPVolumeView.h" . . -(IBAction) handleVolumeButtonClicked:(id) sender { if (volumeView == nil) { ...
1
vote
0answers
2k views

System volume speaker icon always appears when using MPVolumeView

I have sort of the reverse problem expressed here in this S.O. question In my case, I (iPhone 4.3 GM) and a tester (iPhone 4.3.1) are seeing the behavior that when we adjust the volume with our ...
0
votes
1answer
349 views

iPhone: Implement Volume control using buttons

Could anyone please tell me how could I implement the functionality of adjusting the volume on button click? Basically I am trying to put two buttons Volume Up and Volume Down but I couldn't find ...
11
votes
4answers
3k views

AirPlay support, MPMoviePlayerController and MPVolumeView relation

I am developing an iPhone application that has support for video play. I am using MPMoviePlayerController with custom controls for playing the video. For this purpose I have set control style of ...
0
votes
1answer
836 views

iPhone setting sound volume for playing sounds for app only

i currently wonder how to a) Play a sound next to iPod/Other music sources b) beeing able to control the volume of that played sound (only) c) **important** both combined!! d) all of it also on ...
2
votes
1answer
684 views

iOS 4.0 Volume Fade

No matter what I do I seem to run into problems. I'm trying to create a fade over time on an actively playing streamed audio. So far the only players that seem to handle audio streaming properly are ...
4
votes
2answers
1k views

MPVolumeView change size of Airplay icon

I have an MPVolumeView on one of my views, which comes up with an Airplay icon when there are other output sources available. That's all fine, but the icon is tiny, no matter how big I set the frame ...
2
votes
6answers
3k views

Can i using a custom slider to control volume?

As i know,MPVolumeView can add to my app for changing volume.But now i want to control volume with a custom slider. Maybe i can fit it myself if MPVolume was a subclass of uislider,indeed,it is a ...