I want to implement all my own rotation animations but if I only return YES to UIInterfaceOrientationPortrait in shouldAutorotateToInterfaceOrientation:, I no longer get didRotateFromInterfaceOrientation: and willRotateFromInterfaceOrientation: notifications.
Can I get notifications for rotations while also disabling the default rotation animations?
You should still be able to subscribe to
UIDeviceOrientationDidChangeNotificationeven if you’ve disabled view controller autorotation viashouldAutorotateToInterfaceOrientation:.