views:

21

answers:

1

Hello,

Is there a Step-by-step guide on how to upgrade OLD Apps to new SDK ? Especially, which features from old version will not work in new one?

Creating this guide will help companies create toolkit for people who are struggling

A: 

There's no official step-by-step guide, there are however documents on developer.apple.com showing the API Differences between specific versions of the SDK.

Example: iOS 4.0 to iOS 4.1 API Differences

Besides reading & examining the changelogs yourself, you can always open your project with the new SDK. If I'm not mistaken will the compiler show warnings for deprecated API calls. After you have fixed these warnings and the project compiles without errors/warnings you should be all set and your app should run on the newer SDK version.

Remember that this could potentially break your app on older SDK versions.

Yannick Compernol