When is layoutSubviews called?

186,491

Solution 1

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.

Solution 2

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 its frame set only if the size parameter of the frame is different
  • scrolling a UIScrollView causes layoutSubviews to be called on the scrollView, and its superview
  • rotating a device only calls layoutSubview on the parent view (the responding viewControllers primary view)
  • Resizing a view will call layoutSubviews on its superview (Important: views with an intrinsic content size will re-size if the content that determines their size changes; for example, updating the text on a UILabel will cause the intrinsic content size to be updated and thus call layoutSubviews on its superview)

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

Solution 3

Building on the previous answer by @BadPirate, I experimented a bit further and came up with some clarifications/corrections. I found that layoutSubviews: will be called on a view if and only if:

  • Its own bounds (not frame) changed.
  • The bounds of one of its direct subviews changed.
  • A subview is added to the view or removed from the view.

Some relevant details:

  • The bounds are considered changed only if the new value is different, including a different origin. Note specifically that is why layoutSubviews: is called whenever a UIScrollView scrolls, as it performs the scrolling by changing its bounds' origin.
  • Changing the frame will only change the bounds if the size has changed, as this is the only thing propagated to the bounds property.
  • A change in bounds of a view that is not yet in a view hierarchy will result in a call to layoutSubviews: when the view is eventually added to a view hierarchy.
  • And just for completeness: these triggers do not directly call layoutSubviews, but rather call setNeedsLayout, which sets/raises a flag. Each iteration of the run loop, for all views in the view hierarchy, this flag is checked. For each view where the flag is found raised, layoutSubviews: is called on it and the flag is reset. Views higher up the hierarchy will be checked/called first.

Solution 4

https://developer.apple.com/library/prerelease/tvos/documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/CreatingViews/CreatingViews.html#//apple_ref/doc/uid/TP40009503-CH5-SW1

Layout changes can occur whenever any of the following events happens in a view:

a. The size of a view’s bounds rectangle changes.
b. An interface orientation change occurs, which usually triggers a change in the root view’s bounds rectangle.
c. The set of Core Animation sublayers associated with the view’s layer changes and requires layout.
d. Your application forces layout to occur by calling the setNeedsLayout or layoutIfNeeded method of a view.
e. Your application forces layout by calling the setNeedsLayout method of the view’s underlying layer object.

Solution 5

Some of the points in BadPirate's answer are only 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 depends on the view's (target view) autoresize mask. If it has autoresize mask ON, layoutSubview will be called on each addSubview. If it has no autoresize mask then layoutSubview will be called only when the view's (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.

    It is through this technique that the performance of the application also increases.

  2. For the device rotation point

    Rotating a device only calls layoutSubview on the parent view (the responding viewController's primary view)

    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 by calling layoutSubviews.

Share:
186,491

Related videos on Youtube

Steve Weller
Author by

Steve Weller

iPhone and Mac developer in the SF Bay area.

Updated on May 26, 2021

Comments

  • Steve Weller
    Steve Weller almost 3 years

    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 Interface Builder 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 Interface Builder I have the top and bottom struts and the vertical arrow set.


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

    [window makeKeyAndVisible];
    

    of else the subviews are not automatically resized.

  • Andrey Tarantsov
    Andrey Tarantsov almost 15 years
    Are you saying that layoutSubviews is called when the view is resized? I always assumed it is not...
  • Steve Weller
    Steve Weller almost 15 years
    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
    Steve Weller almost 14 years
    Did you make the window key? If not, this can cause all sort of interesting things to not happen.
  • Robert
    Robert almost 13 years
    Great answer. I have always wondered about layoutSubviews. Does initWithFrame: cause layoutSubviews to be called?
  • BadPirate
    BadPirate almost 13 years
    @Robert - I was using initWithFrame... so no.
  • William Jockusch
    William Jockusch over 12 years
    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/…
  • João Portela
    João Portela about 12 years
    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.
  • BadPirate
    BadPirate about 12 years
    Joao - Are you able to verify that this is the case? I'd prefer to have a second source :)
  • João Portela
    João Portela about 12 years
    @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
    João Portela about 12 years
    relevant testing code can be found in this gist (so that you can check if I have made some mistake)
  • Admin
    Admin almost 11 years
    If init doesn't call layoutSubviews, maybe viewDidLoad does ?
  • BadPirate
    BadPirate almost 11 years
    viewDidLoad isn't called on UIView (but UIViewController). View Did load gets called after the UIView is init'd.
  • user1122069
    user1122069 about 8 years
    Also, important to point out is that none of those events are called when the view has not yet been added to the view stack. You include this with the word "can", but specifically it is called in the next available cycle of the application's main thread when it has been marked as needing layout by one of those events.
  • user1122069
    user1122069 about 8 years
    Also, important to point out is that none of those events are called when the view has not yet been added to the view stack. That is why it is not called by init of any type. Specifically it is called in the next available cycle of the application's main thread when it has been marked as needing layout by one of those events.
  • quad16
    quad16 almost 8 years
    can't upvote this answer enough. it should be the top answer. the three rules given is all you need. i've never come across any layoutSubview behaviour that these rules didn't describe perfectly.
  • awph
    awph about 7 years
    Another important point to specify: rotating a device only calls layoutSubview when the layout actually changes. E.g. if the device is in UIInterfaceOrientationLandscapeLeft and changes right to UIInterfaceOrientationLandscapeRight, layoutSubview is not called.
  • HongchaoZhang
    HongchaoZhang about 7 years
    Based on my experiment, the second rule may be not accurate: when I add view1.2 into view1, layoutSubviews of view1.2 and view1 are called, but layoutSubviews of view1.1 is not called. (view1.1 and view1.2 are subviews of view1). That is, not all the subviews of the target view are called layoutSubviews method.
  • Alex Black
    Alex Black almost 7 years
    It also get called in applicationDidEnterBackground on 64Bit iPads.
  • Simon Backx
    Simon Backx over 5 years
    I don't think layoutSubviews is called when the bounds of a direct subview is changed. I think the calling of layoutSubviews is just a side effect of your testing. In some cases layoutSubviews will not get called when a subviews bounds change. Please check the answer of frogcjn, because his anwser is based on documentation by Apple instead of just experiments.
  • ChuckZHB
    ChuckZHB almost 3 years
    In my case, I load some data in viewDidLoad on background queue and reload tableView on main queue. And I apply some gradient color on uiview in viewDidLayoutSubviews. Then I found viewDidLayoutSubviews is called twice when I open this viewController.
  • ChuckZHB
    ChuckZHB almost 3 years
    Oh, and I found a visualisation on this post.