I am trying to create a universal binary that supports multitasking on the iPhone 4 and can still run on the iPad.

I know how to avoid compile errors for different versions of the iPhone IOS by checking if a class exists by using NSClassFromString and "respondToSelector", but is there a way to check for the existence of constants like UIBackgroundTaskInvalid?

I of course can use #IFDEF, but I want to avoid this.

link|improve this question
Possible duplicate: stackoverflow.com/questions/3056016/… – iWasRobbed Jul 29 '10 at 15:10
feedback

3 Answers

You do it as follows:

if (NULL != &UIBackgroundTaskInvalid) {
   //do multitasking stuff here
} else {
   // don't do multitasking stuff here.
}

Basically you want to verify that the address of that variable exists.

Update: To be clear, you can't really use an #ifdef for this since you will build with a version of the SDK that contains the symbols.

link|improve this answer
2  
@Elfred: you win ;-) but it looks like asking for trouble. – mvds Jul 29 '10 at 13:00
In the "applicationDidEnterBackground" selector that I have to overload for multitasking I get a compile error for the " NSAssert(backgroundTask == UIBackgroundTaskInvalid, nil);" line. Obviously this selector will not get called when running on the iPad, but it will not compile if I want to test it using 3.2. So what is the smart way to do this? – Ken Jul 29 '10 at 13:06
You always build with the iOS 4 SDK and set the deployment target to 3.2 – Elfred Jul 29 '10 at 13:23
Yes, but how do I test the code in the 3.2 simulator? – Ken Jul 29 '10 at 13:28
Ah, I see. So for testing set the deployment target to 3.2, but when compiling for distribution set the deployment target to 3.0. Correct? – Ken Jul 29 '10 at 13:32
show 1 more comment
feedback

It's probably sufficient to test for the existence of a method that you know is associated with the constant.

link|improve this answer
Not really because my constant must still appear in the code and will not pass the compiler test. – Ken Jul 29 '10 at 13:11
1  
Yes it will as long as you compile with the BaseSDK 4.0, all the 4.0 constants will be defined, but you should not use them on < 4.0 devices (weak links will not resolve when running on those devices). – progrmr Jul 29 '10 at 14:48
feedback

The preferred method to check for multitasking iOS is to see if UIDevice responds to isMultitaskingSupported, like this:

//----------------------------------------------------------------------
// returns YES if multitasking is available (iOS 4.0 or >)
//----------------------------------------------------------------------
BOOL hasMultitasking() 
{
    UIDevice* device = [UIDevice currentDevice];
    if ([device respondsToSelector:@selector(isMultitaskingSupported)]) {
        return [device isMultitaskingSupported];
    }
    return NO;
}

If multitasking is supported then you can use those multitasking related constants, which you should have weak linked to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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