I have a problem with rotation in iOS8. In iOS7, it's fine.
Sample download : https://www.dropbox.com/s/jr067r3jpzit10h/Rotation.zip?dl=0
The steps are following.
- create tab bar based iOS project in XCode 6.
- set device orientations to support Portrait, Landscape Left, Landscape Right in project setting.
- let the tab bar controller support Portrait only by code.(shouldAutorotate returns true and supportedInterfaceOrientations returns UIInterfaceOrientationMask.Portrait)
- present a view controller from the first view controller in tab bar, by presentViewController:animated:completion. use custom transition by setting transitioningDelegate.(I made a simple fade in/out transitioning delgate for this) the modal view support all kinds of orientation.(shouldAutorotate returns true)
- In the modal view, rotate the device.
- dismiss the modal view.
- view crashed like this.
anyone can help?