TKObservableArray Class Reference
Inherits from | NSObject |
Conforms to | NSFastEnumeration |
Declared in | TKObservableArray.h |
Instance Methods
addObject:
Adds an object to the array.
- (void)addObject:(id)object
Parameters
- object
The object which will be added to the array.
Declared In
TKObservableArray.h
objectAtIndex:
Returns a object at an index.
- (id)objectAtIndex:(NSUInteger)index
Parameters
- index
The object’s index.
Return Value
A object
Declared In
TKObservableArray.h
objectAtIndexedSubscript:
Returns the object at the specified index.
- (id)objectAtIndexedSubscript:(NSUInteger)idx
Parameters
- idx
The object’s index in the array
Declared In
TKObservableArray.h
removeObject:
Removes object from the array
- (void)removeObject:(id)object
Parameters
- object
The object which will be removed from the array.
Declared In
TKObservableArray.h