Нет, вам нужно будет реализовать обратные вызовы вращения и повернуть слой самостоятельно в положение, на котором был экран раньше.
это будет выглядеть примерно так
- (void)viewWillTransitionToSize:(CGSize)size
withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator
{
[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator];
[coordinator animateAlongsideTransition:^(id<UIViewControllerTransitionCoordinatorContext> context)
{
UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
if (orientation == UIInterfaceOrientationMaskPortrait || orientation == UIInterfaceOrientationPortrait) {
/// rotate layer to old orientation
}else{
/// rotate layer to old orientation
}
} completion:^(id<UIViewControllerTransitionCoordinatorContext> context)
{
}];
}