1

I am trying to implement didRotateFromInterfaceOrientation method to notify orientation change but in iOS 10 and Xcode 8.1 it is showing like deprecate method.

enter image description here

Is it deprecated? If Yes then what are the replacements?

M Swapnil
  • 2,361
  • 3
  • 18
  • 33

1 Answers1

1

Yes, it is deprecated since iOS 8. You should use viewWillTransitionToSize:withTransitionCoordinator: instead.

Şafak Gezer
  • 3,928
  • 3
  • 47
  • 49