MonobjcMonobjc Documented Class Library
MakeObjectsPerformSelectorWithObject Method (aSelector, argument)
NamespacesMonobjc.FoundationNSSetMakeObjectsPerformSelectorWithObject(IntPtr, Id)

Sends a message specified by a given selector to each object in the set.

Original signature is '- (void)makeObjectsPerformSelector:(SEL)aSelector withObject:(id)argument'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void MakeObjectsPerformSelectorWithObject(
	IntPtr aSelector,
	Id argument
)
Public Overridable Sub MakeObjectsPerformSelectorWithObject ( _
	aSelector As IntPtr, _
	argument As Id _
)
public:
virtual void MakeObjectsPerformSelectorWithObject(
	IntPtr aSelector, 
	Id^ argument
)
Parameters
aSelector (IntPtr)
A selector that specifies the message to send to the set's members. The method must take a single argument of type id. The method should not, as a side effect, modify the set. The value must not be NULL.
argument (Id)
The object to pass as an argument to the method specified by aSelector.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)