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.
feedback
|
|
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. | |||
|
feedback
|