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 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?

share|improve this question

1 Answer

up vote 1 down vote accepted

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:

public class Stepper : UIStepper
{
    UIImageView _BackgroundImageView;

    public Stepper()
        : base()
    {
        _BackgroundImageView = new UIImageView(UIImage.FromFile(AppImage.Strechable_Black_Button_Normal));
    }

    public override void Draw(RectangleF rect)
    {
        base.Draw(rect);

        //This sets the background UIImageView;
        _BackgroundImageView.Frame = this.Subviews[0].Frame;
        this.Subviews[0] = _BackgroundImageView;

        //Set the background image for the two UIButton's here
        // ....
    }
}
share|improve this answer
Thank you very much for you answer. I found that instead of UIStepper, I could use UISegmentedControl and it acutally works great. – miliu Nov 15 '11 at 21:58

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.