ViewWillTransitionToSize: withTransitionCoordinator: not called

In my iOS8 extension, the ActionViewController (subclass of UIViewController) viewWillTransitionToSize: withTransitionCoordinator: is not called when the device is rotated. Shouldn't it be? Do I need to do something?

I am using Xcode 6 beta 6 (6A280e) - beta 7 causes compilation errors, so I am not using this yet.

+6
source share
1 answer

I had the same problem. But in my case, I found that events always fire in the controller of the original view in the storyboard correctly when the device rotates. Therefore, I inform other objects of the event from the view controller. Hope this helps.

+1
source

Source: https://habr.com/ru/post/974873/


All Articles