performSelector方法官方说明

Apple官方说明链接

https://developer.apple.com/documentation/objectivec/1418956-nsobject/1418867-performselector?language=occ

详细内容

performSelector:

Sends a specified message to the receiver and returns the result of the message.

Required.

Declaration
- (id)performSelector:(SEL)aSelector;

Parameters

aSelector

A selector identifying the message to send. The message should take no arguments. If Selector is NULL, an NSInvalidArgumentException is raised.

Return Value

An object that is the result of the message.

Discussion

The performSelector: method is equivalent to sending an aSelector message directly to the receiver. For example, the following messages all do the same thing:

id aClone = [anObject copy];
id aClone = [anObject performSelector:@selector(copy)];
id aClone = [anObject performSelector:sel_getUid("copy")];

The performSelector: method allows you to send messages that aren’t determined until run-time. This means that you can pass a variable selector as the argument:

SEL aSelector = findTheAppropriateSelectorForTheCurrentSituation();
id returnedObject = [anObject performSelector:aSelector];

But use caution when doing this. Different messages require different memory management strategies for their returned objects, and it might not be obvious which to use.

Usually the caller isn't responsible for the memory of a returned object, but that's not true when the selector is one of the creation methods, such as copy. See Memory Management Policy in Advanced Memory Management Programming Guide for a description of ownership expectations. Depending on the structure of your code, it might not be clear which kind of selector you are using for any given invocation.

Due to this uncertainty, the compiler generates a warning if you supply a variable selector while using ARC to manage memory. Because it can't determine ownership of the returned object at compile-time, ARC makes the assumption that the caller does not need to take ownership, but this may not be true. The compiler warning alerts you to the potential for a memory leak.

To avoid the warning, if you know that aSelector has no return value, you might be able to use performSelectorOnMainThread:withObject:waitUntilDone: or one of the related methods available in NSObject.

For a more general solution, use NSInvocation to construct a message that you can invoke with an arbitrary argument list and return value.

Alternatively, consider restructuring your code to use blocks as a means of passing chunks of functionality through an API. See Blocks Programming Topics for details.

你可能感兴趣的:(performSelector方法官方说明)