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 with the hardware buttons, the slider did move following the adjustment. Anything I missed? I do some search on google/stackoverflow, but it seems that no one meet such problem. They all make it work without any unexpected situation. I appreciate if anyone can help me on this. Thank you.

link|improve this question

50% accept rate
Add the code here? Do you have any other view on top of the MPVolumeView? – Alex Terente May 23 '11 at 8:37
@Terente Ionut Alexandru, sorry Alex, I have not noticed there is a comment here. I just add the MPVolumeView to a toolBar, and two other UIBarButtonItems, the other two work without any problem, just can not interact with the MPVolumeView, do you have any idea about this? sorry for the delay. – GeFo.GT Jun 9 '11 at 10:46
sorry, I typed something mistake, actually I added the MPVolumeView above the toolBar, not as subview inside. – GeFo.GT Jun 9 '11 at 12:08
I've run into the same issue, using the same code that worked in another application. Haven't yet figured it out. – jmstone Feb 21 at 19:46
feedback

1 Answer

Do you add the volume view directly the view controller's view, or does it sit on top of something like a UIImageView? In order for touch to be recognized, the entire view hierarchy has to respond to user interaction. Since a UIImageView has userInteraction disabled by default, you must explicitly enable it in order for the touch event to get passed through and up the chain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.