Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have built an iPhone app with SDK 4.2 however I know also want to make it compatible with iOS 3.1.3.

First step was to set the Deployment Target to 3.1.3. It runs fine on the 3.2 Simulator but the app crashes at times since I'm using some methods which are not available in this early SDK.

So my qestion is, is there a straight forward way to locate the offending methods/classes I'm using in my project which are not available in 3.1.3 ? (without manually going through each method call and consult with the docs for the SDK availability?)

Thanks.

UPDATE: I have executed the app on 3.1.3 and attempted to manually test each execution path with the hope of locating all exceptions. This was completed with some level of success. However, what if the application is huge? and there are lots of execution paths? There must be some tool for this scenario. Any thoughts are much appreciated.

share|improve this question

1 Answer

up vote 12 down vote accepted
+50

I had the same problem and just found a solution.

You should add the following definitions at the beginning of your prefix header:

#import <Availability.h>
#define __AVAILABILITY_INTERNAL__IPHONE_3_2 __AVAILABILITY_INTERNAL_DEPRECATED
#define __AVAILABILITY_INTERNAL__IPHONE_4_0 __AVAILABILITY_INTERNAL_DEPRECATED
#define __AVAILABILITY_INTERNAL__IPHONE_4_1 __AVAILABILITY_INTERNAL_DEPRECATED
#define __AVAILABILITY_INTERNAL__IPHONE_4_2 __AVAILABILITY_INTERNAL_DEPRECATED
#define __AVAILABILITY_INTERNAL__IPHONE_4_3 __AVAILABILITY_INTERNAL_DEPRECATED

Then the next time you compile the app, the methods that are not available in old versions (in this case iOS 3.1) will be marked as deprecated and you will get warnings for each of them.

You can use __AVAILABILITY_INTERNAL_UNAVAILABLE instead of __AVAILABILITY_INTERNAL_DEPRECATED if you want to get errors.

These lines redefine the actual definitions in AvailabilityInternal.h so you should remove them from your prefix header when your are done.

Here is how it works:

Apple marks the availability of the methods in the header files with macros like __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0).

Since you are compiling for iOS the following definition in Availibility.h is applied:

#define __OSX_AVAILABLE_STARTING(_mac, _iphone) __AVAILABILITY_INTERNAL##_iphone

So the methods are actually marked with __AVAILABILITY_INTERNAL__IPHONE_4_0 and similar macros. Normally when you are compiling with the new SDK these macros are replaced with __AVAILABILITY_INTERNAL_WEAK_IMPORT, which does not produce any warning. By adding the lines at the beginning of my answer to your prefix header, you overwrite these definitions with __AVAILABILITY_INTERNAL_DEPRECATED. Therefore Xcode thinks these methods are deprecated and produces the warnings.

share|improve this answer
Thanks for the reply. i get a list of redefined warnings as you said ...App-Prefix.pch:11:1: warning: "__AVAILABILITY_INTERNAL__IPHONE_4_3" redefined.. But it also tells me which methods are deprecated. Can you please explain how this works? – mrd3650 Oct 24 '11 at 7:41
I have added explanation to my answer. – murat Oct 24 '11 at 20:36
very much appreciated! thanks. – mrd3650 Oct 25 '11 at 6:48
thanks for a great answer, upvoted... but it didn't catch [UIView animateWithDuration... __OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0) - any ideas? – Steve Rogers Nov 25 '11 at 5:54
that was probably because you import UIKit before these definitions. I have edited the answer. You should add the definitions to the top of your prefix file and make sure you import Availibility.h before them. – murat Nov 27 '11 at 9:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.