Does Anyone know, how many methods are Deprecated IOS 6.0?
For example:
1)
– shouldAutorotateToInterfaceOrientation: Deprecated in iOS 6.0
Instead use
– shouldAutorotate
2)
– dismissModalViewControllerAnimated: Deprecated in iOS 6.0
– presentModalViewController:animated: Deprecated in iOS 6.0
Instead use
– presentViewController:animated:completion:
– dismissViewControllerAnimated:completion:
Another one
– viewDidUnload Deprecated in iOS 6.0
– viewWillUnload Deprecated in iOS 6.0
For instance you can check for Deprecated methods for NSArray and Deprecated methods for CLLocationManager
List is long but you can google it.