Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Anyone know which methods are Deprecated in IOS 6.0?

Tags:

ios

iphone

ios6

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
like image 301
Vishal Khatri Avatar asked Oct 09 '12 05:10

Vishal Khatri


1 Answers

Changes in iOS 6, List of deprecated methods links

http://www.bgr.com/2012/07/16/ios-6-download-beta-3-change-log/

https://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-6_0/_index.html

https://developer.apple.com/library/mac/#releasenotes/DeveloperTools/RN-Xcode/_index.html

http://blog.twistedhq.com/post/31539631405/whats-new-in-the-new-apple-app-store-guidelines

http://www.bgr.com/2012/07/16/ios-6-download-beta-3-change-log/

http://9to5mac.com/2012/06/25/apple-pushes-ios-6-0-update-to-devs/

Check them out !!! :)

like image 82
IronManGill Avatar answered Oct 13 '22 10:10

IronManGill