Top "Nsmutablearray" questions

NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.

How do I sort an NSMutableArray with custom objects in it?

What I want to do seems pretty simple, but I can't find any answers on the web. I have an …

ios objective-c sorting cocoa-touch nsmutablearray
The best way to remove duplicate values from NSMutableArray in Objective-C?

The best way to remove duplicate values (NSString) from NSMutableArray in Objective-C? Is this the easiest and right way to …

ios objective-c nsmutablearray
'Invalid update: invalid number of rows in section 0

I've read all of the related posts regarding this and I am still having an error: 'Invalid update: invalid number …

ios objective-c arrays nsmutablearray
Adding an object at a specific index of an NSMutableArray

How can an object be added at a specific index of an NSMutableArray? How is an object added to the …

objective-c nsmutablearray foundation
JSON Parsing in iOS 7

I am creating an app for as existing website. They currently has the JSON in the following format : [ { "id": "value", "…

ios objective-c json nsmutablearray nsarray
How to append values to an array in Objective-C

I'm doing this: for(int i=0;i>count;i++) { NSArray *temp=[[NSArray alloc]initWIthObjects]i,nil]; NSLog(@"%i",temp); } …

objective-c nsmutablearray
How to add string objects to NSMutableArray

I have an NSMutableArray named randomSelection: NSMutableArray *randomSelection; I am then trying to add strings to this array if certain …

objective-c nsmutablearray
How to save NSMutablearray in NSUserDefaults

I have two NSMutableArray's. They consist of images or text. The arrays are displayed via a UITableView. When I kill …

ios objective-c uitableview nsmutablearray nsuserdefaults
NSMutableArray check if object already exists

I am not sure how to go about this. I have an NSMutableArray (addList) which holds all the items to …

iphone objective-c ios nsmutablearray