Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 finger on the MPVolumeView or with the physical volume switches, the speaker volume overlay is always appearing (see screenshot). screenshot of speaker overlay on top of MPVolumeView

Here is the code where I create the MPVolumeView. I think it is totally generic and standard:

    MPVolumeView *volumeView = [[[MPVolumeView alloc] initWithFrame:volumeSlider.bounds] autorelease];
[volumeSlider addSubview:volumeView];

*volumeSlider is simply an outlet to a plain UIView that I put on in IB.

The one other thing I can think of is that in IB, the volumeView view is checked as hidden. Then I unhide it when my audio starts playing (it is an audio streaming app).

Thank you for any help!

share|improve this question
1  
Might be relevant: stackoverflow.com/questions/3845222/… – magma Apr 27 '11 at 20:06
Thank you. Related, but not a solution for me. They are trying to hide the slider I believe. – Ethical Paul Apr 27 '11 at 20:15
OK by doing some hacking I found a solution. First, I unchecked "hidden" in IB. Just by doing this, the overlay stayed away. But I still wanted to hide the MPVolumeView when no sound is playing. So I put a setHidden:YES message in my -viewDidLoad method, but then the overlay came back! So I had to have a timer set for .01 in the future call a method that hid the MPVolumeView. Apparently Apple is checking a bit after the view becomes visible to see if there is a visible MPVolumeView and if you hide it too fast, then Apple never sees it. Weird. – Ethical Paul Apr 27 '11 at 20:15
1  
Dammit, this didn't fix it after all, I'm still seeing the issue. – Ethical Paul May 13 '11 at 13:07
Paul, did you ever find a solution to this as I am having the same problem with iOS 5? – amergin Oct 24 '11 at 17:16
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.