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

I'm getting the following warning by the ARC compiler:

"performSelector may cause a leak because its selector is unknown".

Here's what I'm doing:

[_controller performSelector:NSSelectorFromString(@"someMethod")];

Why do I get this warning? I understand the compiler can't check if the selector exists or not, but why would that cause a leak? And how can I change my code so that I don't get this warning anymore?

share|improve this question
3  
The name of the variable is dynamic, it depends on a lot of other things. There's the risk that I call something that doesn't exist, but that's not the problem. – Eduardo Scoz Aug 10 '11 at 20:35
2  
Hmm I guess you're right. Does this clear the warning? SEL mySelector = NSSelectorFromString(@"someMethod"); if (mySelector != nil) { [_controller performSelector:mySelector]; } – mattacular Aug 10 '11 at 20:43
2  
You should/could also test [_controller respondsToSelector:mySelector] before setting it via performSelector: – mattacular Aug 10 '11 at 20:48
8  
@mattacular Wish I could vote down: "That... is bad practice." – ctpenrose Apr 11 '12 at 18:44
4  
If you know the string is a literal, just use @selector() so the compiler can tell what the selector name is. If your actual code is calling NSSelectorFromString() with a string that’s constructed or provided at runtime, then you must use NSSelectorFromString(). – Chris Page May 22 '12 at 23:25
show 6 more comments

14 Answers

up vote 129 down vote accepted

My guess about this is this: since the selector is unknown to the compiler, ARC cannot enforce proper memory management.

In fact, there are times when memory management is tied to the name of the method by a specific convention. Specifically, I am thinking of convenience constructors versus make methods; the former return by convention an autoreleased object; the latter a retained object. The convention is based on the names of the selector, so if the compiler does not know the selector, then it cannot enforce the proper memory management rule.

If this is correct, I think that you can safely use your code, provided you make sure that everything is ok as to memory management (e.g., that your methods do not return objects that they allocate).

share|improve this answer
4  
Thanks for the answer, I'll look more into this to see what is going on. Any idea on how I can bypass the warning though and make it disappear? I would hate to have the warning sitting in my code forever for what is a safe call. – Eduardo Scoz Aug 10 '11 at 20:46
62  
So I got confirmation from somebody at Apple in their forums that this is indeed the case. They'll be adding a forgotten override to allow people to disable this warning in future releases. Thanks. – Eduardo Scoz Aug 11 '11 at 20:20
5  
This answer raises some questions, like if ARC tries to make determinations on when to release something based upon convention and method names, then how is it "reference counting"? The behavior you describe sounds only marginally better than completely arbitrary, if ARC is assuming the code follows a certain convention as opposed to actually keeping track of the references no matter what convention is followed. – aroth Feb 4 '12 at 14:38
7  
ARC automates the process of adding retains and releases at compile. It is not garbage collection (which is why it is so incredibly fast and low overhead). It is not arbitrary at all. The default rules are based on well-established ObjC conventions that have been consistently applied for decades. This avoids the need to explicitly add an __attribute to every method explaining its memory management. But it also makes it impossible for the complier to properly handle this pattern (a pattern which used to be very common, but has been replaced with more robust patterns in recent years). – Rob Napier Feb 16 '12 at 15:13
4  
So we can no longer have an ivar of type SEL and assign different selectors depending on the situation? Way to go, dynamic language... – NicolasMiari Jun 22 '12 at 12:16
show 9 more comments

In the LLVM 3.0 compiler in Xcode 4.2 you can suppress the warning as follows:

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
    [self.ticketTarget performSelector: self.ticketAction withObject: self];
#pragma clang diagnostic pop

If you're getting the error in several places, you can define a macro to make it easier to suppress the warning:

#define SuppressPerformSelectorLeakWarning(Stuff) \
    do { \
        _Pragma("clang diagnostic push") \
        _Pragma("clang diagnostic ignored \"-Warc-performSelector-leaks\"") \
        Stuff; \
        _Pragma("clang diagnostic pop") \
    } while (0)

You can use the macro like this:

SuppressPerformSelectorLeakWarning(
    [_target performSelector:_action withObject:self]
);

If you need the result of the performed message, you can do this:

id result;
SuppressPerformSelectorLeakWarning(
    result = [_target performSelector:_action withObject:self]
);
share|improve this answer
44  
+1 for showing how to use it properly (i.e. without turning it off for the entire project). – Rob Napier Feb 16 '12 at 15:14
24  
Good clean push/pop. IMHO this should be the new accepted/best answer to this question. – Eric Goldberg Feb 24 '12 at 18:21
3  
@Eric No it cannot, unless you're invoking funny methods like "initSomething" or "newSomething" or "somethingCopy". – Andrey Tarantsov Aug 20 '12 at 1:56
2  
@Julian That does work, but that turns off the warning for the entire file – you might not need or want that. Wrappping it with the pop and push-pragmas are much cleaner and more secure. – Emil Jan 10 at 19:52
2  
Using your macro is OK only for cases where you don't need to handle the expression result. Suppose you have id result = [target performSelector:action]. You cannot do id result = SuppressPerformSelectorLeakWarning(...), nor SuppressPerformSelectorLeakWarning(id result = ...). One can come up with a better macro, but I'd still advocate against it. – jweyrich Jan 27 at 1:19
show 6 more comments

As a workaround until the compiler allows overriding the warning, you can use the runtime

objc_msgSend(_controller, NSSelectorFromString(@"someMethod"));

instead of

[_controller performSelector:NSSelectorFromString(@"someMethod")];

You'll have to

#import <objc/message.h>

share|improve this answer
Thanks, I just tried your solution and indeed it removes the warning. Kind of strange that the call to the C method is not really tracked by ARC, as now there's no way to release objects that might be returned, right? Maybe I'm overlooking something, but it's kind of scary. – Eduardo Scoz Aug 17 '11 at 13:09
8  
ARC recognizes Cocoa conventions and then adds retains and releases based on those conventions. Because C does not follow those conventions, ARC forces you to use manual memory management techniques. If you create a CF object, you must CFRelease() it. If you dispatch_queue_create(), you must dispatch_release(). Bottom line, if you want to avoid the ARC warnings, you can avoid them by using C objects and manual memory management. Also, you can disable ARC on a per-file basis by using the -fno-objc-arc compiler flag on that file. – jluckyiv Aug 19 '11 at 2:58
8  
Not without casting, you can't. Varargs is not the same as an explicitly typed argument list. It'll generally work by coincidence, but I don't consider "by coincidence" to be correct. – bbum Sep 27 '11 at 20:16
13  
Don't do that, [_controller performSelector:NSSelectorFromString(@"someMethod")]; and objc_msgSend(_controller, NSSelectorFromString(@"someMethod")); are not equivalent! Have a look at Method Signature Mismatches and A big weakness in Objective-C's weak typing they are explaining the problem in depth. – 0xced Nov 16 '11 at 9:40
1  
@0xced In this case, it's fine. objc_msgSend will not create a method signature mismatch for any selector that would have worked correctly in performSelector: or its variants since they only ever take objects as parameters. As long as all your parameters are pointers (incl. objects), doubles and NSInteger/long, and your return type is void, pointer or long, then objc_msgSend will work correctly. – Matt Gallagher Feb 17 '12 at 8:47
show 2 more comments

In your project Build Settings, under Other Warning Flags (WARNING_CFLAGS), add
-Wno-arc-performSelector-leaks

Now just make sure that the selector you are calling does not cause your object to be retained or copied.

share|improve this answer
1  
Thanks a lot for the answer. Great that they added the setting to disable the warning, and great to know you can disable it system-wide. – Eduardo Scoz Oct 31 '11 at 14:07
+1 Thanks. This seems like one of the more practical solutions. – FreeAsInBeer Dec 14 '11 at 15:35
6  
Note you can add the same flag for specific files rather than the entire project. If you look under Build Phases->Compile Sources, you can set per file Compiler Flags (just like you want to do for excluding files from ARC). In my project just one file should use selectors this way, so I just excluded it and left the others. – Michael Jan 5 '12 at 10:37
This was good for me. Thanks. – bandejapaisa Aug 28 '12 at 20:13
1  
Best answer for now (XCode 4.6) – wzbozon Feb 8 at 17:23

To ignore the error only in the file with the perform selector, add a #pragma as follows:

#pragma clang diagnostic ignored "-Warc-performSelector-leaks"

This would ignore the warning on this line, but still allow it throughout the rest of your project.

share|improve this answer
great tip, thanks! – Eduardo Scoz Jan 19 '12 at 13:26
2  
I gather that you can also turn the warning back on immediately after the method in question with #pragma clang diagnostic warning "-Warc-performSelector-leaks". I know if I turn off a warning, I like to turn it back on at the soonest possible moment, so I don't accidentally let another unanticipated warning slip by. It's unlikely that this is a problem, but it's just my practice whenever I turn off a warning. – Rob Apr 8 '12 at 3:06
+1 for Barlow Tucker...Thanks.It's working like a charm. :-) – Gajendra K Chauhan Apr 11 '12 at 10:30
2  
You can also restore your previous compiler configuration state by using #pragma clang diagnostic warning push before you make any changes and #pragma clang diagnostic warning pop to restore the previous state. Useful if you are turning off loads and don't want to have lots of re-enable pragma lines in your code. – deanWombourne Jul 11 '12 at 10:42
great! This was exactly what I was looking for. THX – DZenBot Oct 13 '12 at 22:21
show 1 more comment

Strange but true: if acceptable (i.e. result is void and you don't mind letting the runloop cycle once), add a delay, even if this is zero:

[_controller performSelector:NSSelectorFromString(@"someMethod")
    withObject:nil
    afterDelay:0];

This removes the warning, presumably because it reassures the compiler that no object can be returned and somehow mismanaged.

share|improve this answer
Very interesting approach! – Eduardo Scoz Nov 11 '12 at 19:28
More a "happy accident" than an approach. :) – matt Nov 11 '12 at 19:59
Do you know if this actually resolves the related memory management issues, or does it have the same issues but Xcode isn't smart enough to warn you with this code? – Aaron Brager Jan 15 at 19:18
This is semantically not the same thing! Using performSelector:withObject:AfterDelay: will perform the selector in the next run of the runloop. Therefore, this method returns immediately. – Florian Apr 9 at 6:52
@Florian Of course it's not the same! Read my answer: I say if acceptable, because the result is void and the runloop cycles. That's the first sentence of my answer. – matt Apr 9 at 14:26

This code doesn't involve compiler flags or direct runtime calls:

SEL selector = @selector(zeroArgumentMethod);
NSMethodSignature *methodSig = [[self class] instanceMethodSignatureForSelector:selector];
NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSig];
[invocation setSelector:selector];
[invocation setTarget:self];
[invocation invoke];

NSInvocation allows multiple arguments to be set so unlike performSelector this will work on any method.

share|improve this answer
3  
Do you know if this actually resolves the related memory management issues, or does it have the same issues but Xcode isn't smart enough to warn you with this code? – Aaron Brager Jan 15 at 19:17
You could say it solves the memory management issues; but this is because it basically lets you specify the behavior. For example, you can choose to let invocation retain the arguments or not. To my current knowledge, it attempts to fix the signature mismatch problems that might appear by trusting that you know what you are doing and don't provide it with incorrect data. I'm not sure if all the checks can be performed at runtime. As mentiones in another comment, mikeash.com/pyblog/… nicely explaines what mismatches can do. – Mihai Timar Apr 9 at 21:26

Matt Galloway's answer on this thread explains the why:

Consider the following:

id anotherObject1 = [someObject performSelector:@selector(copy)];
id anotherObject2 = [someObject performSelector:@selector(giveMeAnotherNonRetainedObject)];

Now, how can ARC know that the first returns an object with a retain count of 1 but the second returns an object which is autoreleased?

It seems that it is generally safe to suppress the warning if you are ignoring the return value. I'm not sure what the best practice is if you really need to get a retained object from performSelector -- other than "don't do that".

share|improve this answer

For posterity's sake, I've decided to throw my hat into the ring :)

Recently I've been seeing more and more restructuring away from the target/selector paradigm, in favor of things such as protocols, blocks, etc. However, there is one drop-in replacement for performSelector that I've used a few times now:

[NSApp sendAction: NSSelectorFromString(@"someMethod") to: _controller from: nil];

These seem to be a clean, ARC-safe, and nearly identical replacement for performSelector without having to much about with objc_msgSend().

Though, I have no idea if there is an analog available on iOS.

share|improve this answer
3  
Thanks for including this.. It is available in iOS: [[UIApplication sharedApplication] sendAction: to: from: forEvent:]. I looked into it once, but it kind of feels awkward to use a UI-related class in the middle of your domain or service just to do a dynamic call.. Thanks for including this though! – Eduardo Scoz Feb 26 '12 at 16:21
2  
Ew! It'll have more overhead (since it needs to check whether the method is available and walk up the responder chain if it isn't) and have different error behaviour (walking up the responder chain and returning NO if it can't find anything which responds to the method, instead of simply crashing). It also doesn't work when you want the id from -performSelector:... – tc. May 11 '12 at 12:27
2  
@tc. It doesn't "walk up the responder chain" unless to: is nil, which it isn't. It just goes straight to the targeted object with no checking beforehand. So there isn't "more overhead". It's not a great solution, but the reason you give isn't the reason. :) – matt Oct 17 '12 at 21:37

@c-road provides the right link with problem description here. Below you can see my example, when performSelector causes a memory leak.

@interface Dummy : NSObject <NSCopying>
@end

@implementation Dummy

- (id)copyWithZone:(NSZone *)zone {
  return [[Dummy alloc] init];
}

- (id)clone {
  return [[Dummy alloc] init];
}

@end

void CopyDummy(Dummy *dummy) {
  __unused Dummy *dummyClone = [dummy copy];
}

void CloneDummy(Dummy *dummy) {
  __unused Dummy *dummyClone = [dummy clone];
}

void CopyDummyWithLeak(Dummy *dummy, SEL copySelector) {
  __unused Dummy *dummyClone = [dummy performSelector:copySelector];
}

void CloneDummyWithoutLeak(Dummy *dummy, SEL cloneSelector) {
  __unused Dummy *dummyClone = [dummy performSelector:cloneSelector];
}

int main(int argc, const char * argv[]) {
  @autoreleasepool {
    Dummy *dummy = [[Dummy alloc] init];
    for (;;) { @autoreleasepool {
      //CopyDummy(dummy);
      //CloneDummy(dummy);
      //CloneDummyWithoutLeak(dummy, @selector(clone));
      CopyDummyWithLeak(dummy, @selector(copy));
      [NSThread sleepForTimeInterval:1];
    }} 
  }
  return 0;
}

The only method, which causes memory leak in my example is CopyDummyWithLeak. The reason is that ARC doesn't know, that copySelector returns retained object.

If you'll run Memory Leak Tool you can see the following picture: enter image description here ...and there are no memory leaks in any other case: enter image description here

share|improve this answer

Because you are using ARC you must be using iOS 4.0 or later. This means you could use blocks. If instead of remembering the selector to perform you instead took a block, ARC would be able to better track what is actually going on and you wouldn't have to run the risk of accidentally introducing a memory leak.

share|improve this answer
Actually, blocks make it very easy to accidentally create a retain cycle which ARC does not solve. I still wish that there was a compiler warning when you implicitly used self via an ivar (e.g. ivar instead of self->ivar). – tc. May 11 '12 at 12:32

Here is an updated macro based on the answer given above. This one should allow you to wrap your code even with a return statement.

#define SUPPRESS_PERFORM_SELECTOR_LEAK_WARNING(code)                        \
    _Pragma("clang diagnostic push")                                        \
    _Pragma("clang diagnostic ignored \"-Warc-performSelector-leaks\"")     \
    code;                                                                   \
    _Pragma("clang diagnostic pop")                                         \


SUPPRESS_PERFORM_SELECTOR_LEAK_WARNING(
    return [_target performSelector:_action withObject:self]
);
share|improve this answer
nice tip! thanks! – Eduardo Scoz May 7 at 16:40

Go to Build settings and you can ignore any warning using this flag

-w -Xanalyzer -analyzer-disable-checker

But this will surely not resolve memory issues. But if you are going all well with your code. And just want to remove the warnings use this.

share|improve this answer

Try this:

__unsafe_unretained SEL mySelector = NSSelectorFromString(@"someMethod");

[_controller performSelector:mySelector];

The idea is there are some flags to help ARC understand how memory is managed for some trickier cases. If that doesn't remove the warning some other flag might.

share|improve this answer
5  
It doesn't work for selectors. Now I get an extra warning: 'ojbc_ownership' only applies to Objective-c objects or block pointer types; type here is 'SEL'. Good try, though. :) – Eduardo Scoz Aug 10 '11 at 21:02
Here is some more info on the flags: clang.llvm.org/docs/AutomaticReferenceCounting.html#ownership – mattacular Aug 10 '11 at 21:44
1  
Darn, I knew SEL was not really an object but was hoping it would take the hint or be set to work with SEL as a special case... thanks for the link @matt, but I was unable to easily glean a better directive for SEL from that document. – Kendall Helmstetter Gelner Aug 10 '11 at 21:59

protected by chown Dec 13 '12 at 14:28

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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