Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 change the track rect bounds. I have a custom slider because i'm overriding the trackRectForBounds method.

How can i assign my custom slider to the MPVolumeView or how can i change the track rect bounds without overriding it.

Thanks in advance.

share|improve this question
You can not assign your custom slider but you may change the appearance of the MPVolumeSlider by typecasting its instance towards a regular UISlider and customizing it as such. – Till Jan 2 '12 at 12:25
ok but how can i change the track for rect bounds. i want my slider track to have 8px height and 223px width. – Marcelo Conceição Jan 2 '12 at 12:30

1 Answer

Use one of your normal custom sliders and internally use a MPMusicPlayerController* to change the volume.

Depending on how you have your slider setup you may also need to catch Volume Change events when the device volume buttons are pressed.

share|improve this answer

Your Answer

 
discard

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

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