MonobjcMonobjc Documented Class Library
MakeObjectsPerformSelectorWithObject Method (aSelector, anObject)
NamespacesMonobjc.FoundationNSArrayMakeObjectsPerformSelectorWithObject(IntPtr, Id)

Sends the aSelector message to each object in the array, starting with the first object and continuing through the array to the last object.

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

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void MakeObjectsPerformSelectorWithObject(
	IntPtr aSelector,
	Id anObject
)
Public Overridable Sub MakeObjectsPerformSelectorWithObject ( _
	aSelector As IntPtr, _
	anObject As Id _
)
public:
virtual void MakeObjectsPerformSelectorWithObject(
	IntPtr aSelector, 
	Id^ anObject
)
Parameters
aSelector (IntPtr)
A selector that identifies the message to send to the objects in the array. The method must take a single argument of type id, and must not have the side effect of modifying the receiving array.
anObject (Id)
The object to send as the argument to each invocation of the aSelector method.
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)