I have an UIViewController A which opens another modal UIViewController B on UIButton action.
My Question is: When the current modal UIViewController B is open and did rotate - the previous UIViewController A doesn't rotate at all. This implies that when I dismiss UIViewController B - UIViewController A is still in the old state (has still the old interface orientation). Currently I am forcing A to rotate by calling a method in A when B rotates.
Is there another common way to inform other view controllers about rotation? Or what would be the proper way?