I'm exploring if the landscape "Safe Area insets" can be presicely known in viewWillTransitionToSize
when rotating from Portrait to Landscape.
I've seen this SO answer, its code is rather a pseudocode: https://stackoverflow.com/a/46581783/2567725
On my iPhone XR insets are {48, 0, 34, 0}
for portrait and {0, 48, 21, 48}
for Landscape.
Like this:
When rotating a device - from Portrait to Landscape - I log the "future" insets in animateAlongsideTransition
, and they are correct.
The question is, why those correct values are retrieved from FromViewControllerKey
, not from ToViewControllerKey
:
- (void)logSafeAreaInsets:(id<UIViewControllerTransitionCoordinatorContext>)context
{
UIInputViewController* vcFrom = [context viewControllerForKey:UITransitionContextFromViewControllerKey];
UIEdgeInsets iiFrom = vcFrom.view.safeAreaInsets;
UIInputViewController* vcTo = [context viewControllerForKey:UITransitionContextToViewControllerKey];
UIEdgeInsets iiTo = vcTo.view.safeAreaInsets;
NSLog(@"TADAM from=%@ to=%@", NSStringFromUIEdgeInsets(iiFrom), NSStringFromUIEdgeInsets(iiTo));
}
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
[self logSafeAreaInsets:context];
} completion:^(id<UIViewControllerTransitionCoordinatorContext> _Nonnull context) {
}];
}
And for ToViewControllerKey
they are {0, 0, 0, 0}
!
The logs look like this:
TADAM from={0, 48, 21, 48} to={0, 0, 0, 0}
As I understand, ToViewControllerKey
is a Landscape VC (after rotation), and FromViewControllerKey
is a Portrait VC (before rotation).
So I can get what I want UIViewControllerTransitionCoordinatorContext
, but its logic seems wrong:
- Why real Landscape insets are retrieved from
FromVC
, not fromToVC
? - Why insets for
ToVC
are zero inanimateAlongsideTransition
?
Well, the logic isn't "slightly wrong", it's just undocumented. As it turned out,
vcTo
isnil
in my code. So insets arezero
.vcTo
is nil because screen rotation animation is done with only oneVC
, unlike e.g. transitioning animation when pushing/presenting a newVC
.I guess that
vcFrom
has alreadyLandscape
insets inanimateAlongsideTransition
because of difference btw themodel layer tree
and thepresentation layer tree
- while I don't know yet how to check this assumption.