NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.
I've got an NSMutableArray that holds a bunch of objects, what I'm trying to figure out is how much memory …
ios objective-c cocoa-touch nsmutablearrayWhat is the difference between copy and mutableCopy when used on either an NSArray or an NSMutableArray? This is my …
cocoa cocoa-touch nsmutablearray nsarray nscopyingI have declared an NSMutableArray *categories in my view controller .h file, and declared a property for it. In the …
objective-c nsmutablearrayI'm able to put the contents of an NSSet into an NSMutableArray like this: NSMutableArray *array = [set allObjects]; The compiler …
objective-c cocoa-touch nsmutablearray nsarray nssetI have a question about sorting NSMutableArray. I can use sortedArrayUsingDescriptors: method to sort an array with objects. For example …
objective-c cocoa sorting nsmutablearrayI am just getting into Obj C, and I am looking to create an array of MKAnnotations. I have already …
ios objective-c nsmutablearray mkannotationI'm having difficulty to add a data structure to an array to create an array of dictionaries from a loop. …
iphone nsmutablearray nsmutabledictionaryI need to check if a certain array contains a certain object, and if it does, delete that object. If …
ios objective-c arrays nsmutablearrayI want to addObject of NSMutableArray into NSMutableArray so how can I achieve this in swift. and also retrieve it …
ios swift nsmutablearrayI need to create a mutable two-dimensional array in Objective-C. For example I have: NSMutableArray *sections; NSMutableArray *rows; Each item …
objective-c cocoa cocoa-touch multidimensional-array nsmutablearray