I want to use UIStepper to represent back/forward buttons. I'd like to replace the standard +/- sign with arrow images. How can I do that in MonoTouch?
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.
|
|
|
Unfortunately....not really, without using private APIs. If you take a look at UIStepper's view hierarchy it's just two UIButton's with their own BackgroundImage's for their given UIControlState + an UIImageView for the overall stepper's background. It'd be much easier and safer to implement your own UIStepper or try and port someone else's obj-C UIStepper implementation then to try and override the existing images. That being said, I went through the motions of trying to verify that it was possible by touching the view hierarchy directly:
|
|||
|