Top "Nsmutablearray" questions

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

Sorting an NSArray of NSString

Can someone please show me the code for sorting an NSMutableArray? I have the following NSMutableArray: NSMutableArray *arr = [[NSMutableArray alloc] …

iphone sorting ios nsmutablearray nsarray
NSMutableArray from NSArray

i have the following code and i want to use NSMutable arrays instead of NSArray could you tell me how …

ios objective-c nsmutablearray nsarray
How to store CGRect values in NSMutableArray?

How would I store CGRect objects in a NSMutableArray, and then later retrieve them?

iphone nsmutablearray core-graphics
UITableView, how do I know what Section during cellForRowAtIndexPath?

I have a UITableView displaying a list of Cities. I want to separate them by State. I can't seem to …

iphone objective-c nsmutablearray
Sort array of objects by their NSDate property

Possible Duplicate: How to sort an NSMutableArray with custom objects in it? How does one sort an array of objects …

objective-c nsmutablearray nsdate sorting
How to add the object array to nsmutabledictionary with another array as key

for(Attribute* attribute in appDelegate.attributeArray) { attribute = [appDelegate.attributeArray objectAtIndex:z]; attri = attribute.zName; int y = 0; for(Row* r in …

iphone objective-c nsmutablearray nsmutabledictionary
Reverse NSMutableArray

What is the best/correct way to reverse an NSMutableArray?

ios macos nsmutablearray
is it possible to save NSMutableArray or NSDictionary data as file in iOS?

I want to save an NSMutableArray or NSDictionary as a permanent file. Then, I would like to reopen the file …

ios cocoa-touch nsmutablearray nsdictionary nsdata
How to compare two NSArrays for equal content?

I have 2 Nsarray where objects of 2 arrays are same may be indexes of the object differs, but it should print …

objective-c ios nsmutablearray nsarray equals
The correct way to declare, alloc, load, and dealloc an NSMutableArray

I declare my array in my *.h file: @interface aViewController: UIViewController { NSMutableArray *anArray; // You will need to later change this …

objective-c iphone nsmutablearray dealloc