An immutable, integer-indexed array of objects from the Apple Foundation framework.
I have a little problem when I try to split delimited string into an Array. Basically, I want to pass …
ios nsstring nsarray addressbookI'm using an array to store cached objects loaded from a database in my iPhone app, and was wondering: are …
iphone cocoa cocoa-touch nsmutablearray nsarrayIn a Cocoa Touch project, I need a specific class to have not only a single delegate object, but many …
iphone cocoa-touch delegates nsarray retainI have a database model class that is a NSObject. I have a set of these objects in a NSMutableArray. …
objective-c nsarray nsobjectNSArray has useful methods to find objects for specified indexes // To find objects by indexes - (id)objectAtIndex:(NSUInteger)index …
cocoa arrays nsarray nsindexsetI wrote this simple code to try out the new Objective-C literal syntax for NSArrays: NSArray *array = @[@"foo"]; NSLog(@"%@", array[0]); …
objective-c cocoa compiler-errors nsarray objective-c-literalsnoobie question.. What is the best way to check if the index of an NSArray or NSMutableArray exists. I search …
cocoa nsmutablearray nsarray indexoutofboundsexceptionIs there a good way to convert a vector<int32_t> to an NSArray of NSNumber or is …
c++ vector nsarray objective-c++For my application I am trying to store CGRect objects into an NSMutableArray. It is loading well and printing in …
objective-c ios nsarray cgrectI've defined a class where I'd like a public property to appear as though it is backed by an NSArray. …
objective-c ios nsarray mutable