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 refactored a project to ARC. It looks fine, but there is an object which uses the notification center. I removed the observer in a custom dealloc method. That worked fine in the non ARC project. It also works in ARC, but I get a crazy warning: "Method possibly missing a [super dealloc] call." In an ARC project it is automatically done for me, when the method ends. Even better: I must not call it in ARC projects! This must be an XCode bug, right? Here's my code:

- (void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    // [super dealloc]; will be called automatically
}

I always want to write code that doesn't throw warnings. Is there a way around that yellow exclamation mark?

share|improve this question
There shouldn't be any warning, as you suspected. Are you sure you turned off ARC properly? – DrummerB Aug 28 '12 at 9:31
I turned ARC on! I used the Edit / Refactor / Convert to Objective-C ARC... menu. – Ingo Dellwig Aug 28 '12 at 9:36
5  
Make sure that specific implementation file does not build without ARC support - check Build-Phases->Compile Sources for that. – Till Aug 28 '12 at 9:36
The file with the warning should build with ARC (no compiler flags entered). There are other files with the -fno-objc-arc flag, though. – Ingo Dellwig Aug 28 '12 at 9:43
Have you cleaned and deleted derived data and everything? – Carl Veazey Aug 28 '12 at 11:59
show 1 more comment

1 Answer

up vote 5 down vote accepted

Put the following lines into your dealloc method to make sure it is compiled with ARC enabled:

#if ! __has_feature(objc_arc)
#error "ARC is off"
#endif

If you get the compiler error when building, you're sure that ARC is off and have to search for the reason. It's probably in per-file build settings in your target.

share|improve this answer
OK, here's the answer to that riddle: The project has two targets and the refactoring only changed the "Objective-C Automatic Reference Counting" flag in the Build Settings of one target to YES. So the other one threw that warning. Switched it to YES by myself, and now it works. Thanks, guys! – Ingo Dellwig Aug 28 '12 at 12:34
Also I just discovered that if you turn on ARC for the project while viewing the target, the target will still be set to NO. You need to enable ARC for each target individually it appears. – Dave Batton May 24 at 19:36

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.