NSArray

Undocumented in source but is binding to Objective-C. You might be able to learn more by searching the web for its name.

Members

Aliases

length
alias length = count
Undocumented in source.

Functions

count
NSUInteger count()

The number of objects in the array.

init
NSArray init()
Undocumented in source.
objectAtIndex
NSObject objectAtIndex(NSUInteger index)

Returns the object located at the specified index.

Static functions

array
NSArray array()

Creates and returns an empty array.

array
NSArray array(NSArray array)

Creates and returns an array containing the objects in another given array.

array
NSArray array(NSObject object)

Creates and returns an array containing a given object.

array
NSArray array(NSObject objects, ...)

Creates and returns an array containing the objects in the argument list.

array
NSArray array(NSObject* objects, NSUInteger count)

Creates and returns an array that includes a given number of objects from a given C array.

Inherited Members

From NSObject

alloc
NSObject alloc()
Undocumented in source.
initialize
NSObject initialize()
Undocumented in source.
retain
NSObject retain()

Increments the receiver’s reference count.

release
void release()

Decrements the receiver’s reference count.

autorelease
NSObject autorelease()

Decrements the receiver’s retain count at the end of the current autorelease pool block.

Meta