removeTarget(_:action:)
Removes a target and action from a remote command object.
Declaration
func removeTarget(_ target: Any, action: Selector?)Parameters
- target:
The object that currently is a recipient of action messages sent by this object. Specify
nilto remove all targets. - action:
A selector identifying a method on the target. Specify
NULLto remove all actions.
Discussion
Call the removeTarget(_:action:) method to remove the specified target-action pair. Passing nil for target matches all targets and passing NULL for action matches all actions.