Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got an iPhone app that's mainly targetting 3.0, but which takes advantage of newer APIs when they're available. Code goes something like this:

if (UIApplicationDidEnterBackgroundNotification != NULL) {
    [nc
        addObserver: self
        selector:    @selector(irrelevantCallbackName:)
        name:        UIApplicationDidEnterBackgroundNotification
        object:      nil];
}

Now, according to everything Apple's ever said, if the relevant APIs are weakly linked, that will work fine because the dynamic linker will evaluate UIApplicationDidEnterBackgroundNotification to NULL. Except that it doesn't. The application compiles, but as soon as it hits if (UIApplicationDidEnterBackgroundNotification != NULL) it crashes with EXC_BAD_ACCESS.

Is this simply a matter of a compiler flag I need to set? Or am I going about this the wrong way?

share|improve this question
I knew I would find the answer by merely searching for UIApplicationWillEnterForegroundNotification on SO… It must be the most common reason for developers to need to deal with conditionally available globals. – Pierre Lebeaupin May 27 '11 at 16:50
@Pierre Lebeaupin: That seems to be the case. – Jonathan Grynspan May 29 '11 at 15:53

2 Answers

up vote 27 down vote accepted

Aaand I figured it out. For symbols that are not functions (extern const int foobar, for instance), you have to compare against the address of the symbol, not the symbol itself, so:

if (&UIApplicationWillEnterForegroundNotification != NULL)
    etc;

Which in retrospect is kind of obvious, but I still fault the entire universe around me for not ever mentioning the distinction.

share|improve this answer
1  
If you are using LLVM, you have to do some tricks to get it to not optomize out your if statement. This works for me. BOOL backgroundOK = &UIApplicationDidEnterBackgroundNotification != NULL; if (backgroundOK) { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidEnterBackground:) name:UIApplicationDidEnterBackgroundNotification bject:nil]; } – David Beck Jul 5 '10 at 15:04
Using vanilla GCC, but if LLVM is looking at it differently, I suspect it may be a bug on Apple's part (as Apple explicitly tells developers to do this sort of runtime check with weak-linked symbols.) You might want to write up a test case and submit it to Apple at bugreporter.apple.com . :) – Jonathan Grynspan Jul 6 '10 at 3:23

Here is what I had to do when checking for an external framework constant.

const CLLocationAccuracy * ptr = &kCLLocationAccuracyBestForNavigation;
BOOL frameworkSupports = (ptr != NULL);
if (frameworkSupports) {
    return kCLLocationAccuracyBestForNavigation;
} else {
    return kCLLocationAccuracyBest;
}

It would not work without the ptr variable.

share|improve this answer
>>It would not work without the ptr variable. Andrew is absolutely right.. – Bharath Booshan Sep 22 '11 at 6:37

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.