The mpvolumeview tag has no wiki summary.
8
votes
3answers
1k 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 ...
3
votes
1answer
200 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 ...
2
votes
1answer
209 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 ...
2
votes
1answer
587 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
2answers
549 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 ...
1
vote
0answers
89 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
55 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 ...
1
vote
1answer
277 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 ...
1
vote
0answers
174 views
MPVolumeView can not interact
there is something really make me a headache. I simply add a MPVolumeView to a UIViewController, but I can not interact with the slider, it did not move with my finger. But when I adjust the volume ...
1
vote
0answers
598 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 ...
1
vote
1answer
485 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 ...
1
vote
4answers
1k 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 ...
0
votes
2answers
16 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
1answer
63 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?
0
votes
1answer
70 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 ...
0
votes
0answers
136 views
strange relationship between the slider in MPVolumeView and system volume
before, i display the slider of MPVolumeView, and i can change the system volume by dragging the slider.
now i want to promote it adding an icon to set the value.
change the slider value by moving ...
0
votes
2answers
257 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
190 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
73 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.
0
votes
2answers
538 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) {
...
0
votes
1answer
189 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 ...
0
votes
1answer
372 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 ...