removeTarget(_:action:for:)
Stops the delivery of events to the specified target object.
Declaration
func removeTarget(_ target: Any?, action: Selector?, for controlEvents: UIControl.Event)Parameters
- target:
A target object registered with the control. Specify
nilto remove the specified control events for all target objects. - action:
A selector identifying a registered action method. You may specify
nilfor this parameter. - controlEvents:
A bitmask specifying the control events that you want to remove for the specified
targetobject. For a list of possible constants, see Event.
Discussion
Use this method to prevent the delivery of control events to target objects associated with control. If you specify a valid object in the target parameter, this method stops the delivery of the specified events to all action methods associated with that object. If you specify nil for the target parameter, this method prevents the delivery of those events to all action methods of all target objects.
Although the action parameter is not considered when stopping the delivery of events, you should specify an appropriate value anyway. If the specified target/action combination no longer has any valid control events associated with it, the control cleans up its corresponding internal data structures. Doing so can affect the set of objects returned by the allTargets method.