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 UIView inside a UIViewm and I want the inner UIView to be always centered inside the outer one, without it having to resize the width and height.

I've set the struts and springs so that it's on top/left/right/bottom without setting the resize. But it still doesn't center. Any idea?

share|improve this question
Please consider reviewing your accepted answer as the solution offered by @Hejazi is considerably more elegant. – ATfPT Mar 1 at 17:04

5 Answers

up vote 9 down vote accepted

Try:

yourSubView.center = CGPointMake(yourView.frame.size.width / 2, yourView.frame.size.height / 2);
share|improve this answer
1  
You should use the bounds and not the frame, as the frame is undefined if the view has a transform. – omz Jun 29 '12 at 9:08
Thanks omz - always gets me. I will learn one day... – happy pig Jun 29 '12 at 11:33
It actually won't make a different in this case, as only size is being used. – Peter DeWeese Jun 29 '12 at 12:25
That doesn't matter, the entire frame property is undefined if the view has a transform that is not the identity transform; read the documentation on the frame property of UIView. – omz Jun 29 '12 at 12:33

You can do this and it will always work:

child.center = [parent convertPoint:parent.center fromView:parent.superview];
share|improve this answer
This is better than the other manual calculation methods, as a developer shouldn't bother duplicating translation that is already built in. – Peter DeWeese Jun 29 '12 at 12:24
2  
Beautiful piece of code – AlBeebe Oct 29 '12 at 0:32
2  
Should be the accepted answer – Odelya Feb 28 at 20:16

I prefer:

UIView *parentFrame, *childFrame;
[childFrame setFrame:CGRectMake(
            floorf((parent.frame.size.width - child.frame.size.width) / 2.0),
            floorf((parent.frame.size.height - child.frame.size.height) / 2.0),
            child.frame.width,
            child.frame.height)];
share|improve this answer
1  
It should be noted that, unlike the accepted answer, this solution will align cleanly on pixel boundaries and prevent blurriness of the view for certain widths. – Brad Larson Jul 12 '12 at 19:11

You could try

[subview center] = [view center];
share|improve this answer
1  
If you are using bracket soup for a property setter method call, you typically need to use [subview setCenter:view.center]. – Peter DeWeese Jun 29 '12 at 12:18

Use this:

yoursubView.center = yourView.center;
share|improve this answer
3  
This won't work, yourView.center is relative to yourView's superview, so it's not suitable for centering its subviews. It may work coincidentally, if yourView happens to be of the same size as its superview. – omz Jun 28 '12 at 21:28
apple says : CGPoint center here the center is specified within the coordinate system of its superview and is measured in points. Setting this property changes the values of the frame properties accordingly. – Prince Jun 29 '12 at 5:50
So? That's what I said, the key part here is "within the coordinate system of its superview" ... – omz Jun 29 '12 at 8:48
as happy pig said then what about its contents in subview as its size is more than parentView. Basically i mean is how will subview adjust it according to parentView – Prince Jun 29 '12 at 9:02

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.