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 custom view that's not getting layoutSubview messages during animation.

I have a view that fills the screen. It has a custom subview at the bottom of the screen that correctly resizes in IB if I change the height of the nav bar. layoutSubviews is called when the view is created, but never again. My subviews are correctly laid out. If I toggle the in-call status bar off, the subview's layoutSubviews is not called at all, even though the main view does animate its resize.

Under what circumstances is layoutSubviews actually called?

I have autoresizesSubviews set to NO for my custom view. And in IB I have the top and bottom struts and the vertical arrow set.

share|improve this question

6 Answers

I had a similar question, but wasn't satisfied with the answer (or any I could find on the net), so I tried it in practice and here is what I got:

  • init does not cause layoutSubviews to be called (duh)
  • addSubview causes layoutSubviews to be called on the view being added, the view it’s being added to (target view), and all the subviews of the target
  • view setFrame intelligently calls layoutSubviews on the view having it’s frame set only if the size parameter of the frame is different
  • scrolling a UIScrollView causes layoutSubviews to be called on the scrollView, and it’s superview
  • rotating a device only calls layoutSubview on the parent view (the responding viewControllers primary view)
  • Resizing a view will call layoutSubviews on it's superview

My results - http://blog.logichigh.com/2011/03/16/when-does-layoutsubviews-get-called/

share|improve this answer
Great answer. I have always wondered about layoutSubviews. Does initWithFrame: cause layoutSubviews to be called? – Robert Jul 5 '11 at 10:01
@Robert - I was using initWithFrame... so no. – BadPirate Jul 5 '11 at 17:06
I have run into cases where setFrame changes the size but does not cause layoutSubviews to be called. I have no idea why. See this question: stackoverflow.com/questions/7921610/… – William Jockusch Oct 27 '11 at 20:55
from the comments in your blog post: "I find that resizing (not moving, only resizing) any subview causes the superview to get -layoutSubviews sent to it, which I found unexpected. From your table it doesn’t look like you tested that case." please add this to your points. – João Portela Feb 13 '12 at 14:24
3  
@BadPirate: yes. According to my experiments, if you resize view1.1 it calls layoutSubviews of view1 and then layoutSubviews of view1.1. This call does not propagate indefinitely to the superviews, calling it on view1.1.1 only calls layoutSubviews on view1.1 and view1.1.1. Just moving without changing it's size does not call layoutSubviews on any of them. – João Portela Feb 17 '12 at 16:25
show 3 more comments
up vote 4 down vote accepted

I tracked the solution down to Interface Builder's insistence that springs cannot be changed on a view that has the simulated screen elements turned on (status bar, etc.). Since the springs were off for the main view, that view could not change size and hence was scrolled down in its entirety when the in-call bar appeared.

Turning the simulated features off, then resizing the view and setting the springs correctly caused the animation to occur and my method to be called.

An extra problem in debugging this is that the simulator quits the app when the in-call status is toggled via the menu. Quit app = no debugger.

share|improve this answer
Are you saying that layoutSubviews is called when the view is resized? I always assumed it is not... – Andrey Tarantsov May 9 '09 at 14:21
It is. When a view is resized it needs to do something with its subviews. If you don't provide it then it moves them automatically using springs, struts etc. – Steve Weller May 10 '09 at 4:45

When migrating an OpenGL app from SDK 3 to 4, layoutSubviews was not called anymore. After a lot of trial and error I finally opened MainWindow.xib, selected the Window object, in the inspector chose Window Attributes tab (leftmost) and checked "Visible at launch". It seems that in SDK 3 it still used to cause a layoutSubViews call, but not in 4.

6 hours of frustration put to an end.

share|improve this answer
Did you make the window key? If not, this can cause all sort of interesting things to not happen. – Steve Weller Jun 29 '10 at 5:18
Some of above points by BadPirate are partially true  :
  1. for addSubView point

    • addSubview causes layoutSubviews to be called on the view being added, the view it’s being added to (target view), and all the subviews of the target.

    it depend on view's(traget view) autoresize mask, if it have autoresize mask on ,layoutSubview will be called on each addSubview.

    if no autoresize mask ,then , layoutSubview will be called only when View (target View)frame size changes .

    example : if you created UIView programmatically (it has no autoresize mask by default), LayoutSubview will be called only when UIView frame changes not on every addSubview.

    By this performance of application also increases .

  2. For device rotation

    • rotating a device only calls layoutSubview on the parent view (the responding viewControllers primary view)

    This is partially true. This can be true only when your VC is in the VC hierarchy (root at window.rootViewController), well this is most common case. In iOS 5, if you create a VC, but it is not added into any another VC, then this VC would not get any noticed when device rotate, therefore its view would not get noticed too by calling layoutSubviews.

share|improve this answer

have you looked at layoutIfNeeded?

The documentation snippet is below. Does the animation work if you call this method explicitly during the animation?

layoutIfNeeded Lays out the subviews if needed.

- (void)layoutIfNeeded

Discussion Use this method to force the layout of subviews before drawing.

Availability Available in iPhone OS 2.0 and later.

share|improve this answer

Another part of the puzzle is that the window must be made key:

[window makeKeyAndVisible];

of else the subviews are not automatically resized.

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.