Top "Nsmutablearray" questions

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

is there a method to get the Max and Min of an NSMutableArray

Is there a way in iOS for me to get the Max and Min values of an NSMutableArray of double …

ios nsmutablearray max min
NSKeyedArchiver and NSKeyedUnarchiver with NSMutableArray

I'm hoping this isn't something to do with the fact that I'm using a Mutable array here, but this one …

objective-c cocoa nsmutablearray nskeyedarchiver archiving
Is there a literal syntax for mutable collections?

I know I can create an NSArray with @[@"foo", @"bar"] or an NSDictionary with @{@0 : @"foo", @1 : @"bar"}. Is there a literal …

objective-c cocoa nsmutablearray nsmutabledictionary objective-c-literals
Swapping elements in an NSMutableArray

Are there any special methods to make swapping elements in an NSMutableArray easier or more direct?

objective-c cocoa-touch sorting nsmutablearray swap
How do you store "int" values in an NSMutableArray* or NSMutableDictionary*? Chronic problems with JSON data that come in as integers.

How do you store "int" values in an NSMutableArray or NSMutableDictionary? Chronic problems with JSON data that come in as …

objective-c nsmutablearray nsmutabledictionary nsnumber
how to compare two NSMutableArray?

How can I compare two NSMutableArray ? if both are same than it should return true otherwise false. Thanks...

ios cocoa nsmutablearray
Retrieving data from a NSDictionary

I am not quite sure I understand how to do the following. If I wanted to add e.g. an …

iphone uitableview nsmutablearray nsmutabledictionary
Saving an NSMutableArray to Core Data

I want to add an NSMutableArray of NSStrings to one of my Entities in my core data model. The problem …

iphone core-data nsmutablearray
How to split an NSArray into two equal pieces?

I have an NSArray, and I want to split it into two equal pieces (if odd "count" then add to …

objective-c nsmutablearray nsarray