I have an iOS app which support for
Orientation
. Till iOS 8.4
it was giving us an correct view size (width and Height) in viewWillAppear
method according to Orientation
changed. But now I ran my existing app in Xcode 7
with iOS 9,
then Orientation
has broken as the View size is not updating in viewWillAppear
method. I am updating all my controllers of frame/size through viewWillAppear
method, but now its not working. Is it a bug or you designed architecture like this specially for iOS 9. I am using Xib
without any Autolayout
enabled.