MonobjcMonobjc Documented Class Library
MakeObjectsPerformSelector Method (aSelector)
NamespacesMonobjc.FoundationNSArrayMakeObjectsPerformSelector(IntPtr)

Sends to each object in the array the message identified by a given selector, starting with the first object and continuing through the array to the last object.

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

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual void MakeObjectsPerformSelector(
	IntPtr aSelector
)
Public Overridable Sub MakeObjectsPerformSelector ( _
	aSelector As IntPtr _
)
public:
virtual void MakeObjectsPerformSelector(
	IntPtr aSelector
)
Parameters
aSelector (IntPtr)
A selector that identifies the message to send to the objects in the array. The method must not take any arguments, and must not have the side effect of modifying the receiving array.
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)