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 bo
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 thesetNeedsLayoutorlayoutIfNeededmethod of a view.
e. Your application forces layout by calling thesetNeedsLayoutmethod of the view’s underlying layer object.
