Reputation: 714
I was given an old iPad application to repair and to make it work on iOS 6. It is supposed to work perfectly on iOS 5.0.
But as I am compiling using iOS 6 as the base SDK, the application does not work on perfectly on iOS 5 anymore (even on iPad 5.0 Simulator).
I think it would be better to work with the iOS 5.0 base SDK. But I may be wrong.
Thank you for your time,
Upvotes: 1
Views: 1064
Reputation: 4678
Verify that the code is not using any iOS 6 only features. For instance, some of the new Objective-C literal syntax for accessing array elements is not available for use in iOS 5 even though some of the other new literal syntax changes are available in iOS 5.
Upvotes: 1