vote up 2 vote down star
1

Hi,

In interface builder, there are layouts options to send to back or send to front any elements such as UIButton, UIImage, UILabel etc...

Now, I would like to do the same at runtime, programmatically.

Is there an easy way to do that?

I do not want to create different views, just play with the z-axis.

Thank you.

Yohann

flag

1 Answer

vote up 4 vote down check

There are a number of methods of UIView that allow you to modify the view hierarchy.

Since your views are already inserted into your superview, you could easily call bringSubviewToFront: once for each view in whatever order you like.

link|flag
Are you saying that I can't directly send a UIButton to front/back? I have to create a view and add it to that view. Then use the methods above? If so, Is the controller class the place to create such a view? – Yohann T. Jun 28 at 13:42
1  
A UIButton is a subclass of UIView. Just call: [[myButton superview] bringSubviewToFront:myButton]; – Sebastian Celis Jun 28 at 13:47
Just tried it, works like a charm. Thank you for answering that fast. Correct answer. – Yohann T. Jun 28 at 13:54

Your Answer

Get an OpenID
or

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