Top "Nsmutablearray" questions

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

NSMutableArray - Remove duplicates

i tried doing this: Values = [[NSSet setWithArray:Values] allObjects]; and no sucess, Thanks

iphone objective-c nsmutablearray
How to exchange elements in swift array?

I have one simple array like: var cellOrder = [1,2,3,4] I want to exchange elements like suppose a second element with first …

ios arrays swift nsmutablearray
Sorting NSMutableArray By Object's Property

So this is a rather basic question regarding the best way to sort an NSMutableArray of custom objects. I have …

iphone sorting nsmutablearray nsdate
Finding Intersection of NSMutableArrays

I have three NSMutableArray containing names that are added to the lists according to different criterieas. Here are my arrays …

iphone nsmutablearray intersection
How to sort an array which contains Dictionaries?

I have an array which contains dictionaries in it; so how can I sort the array according to dictionary key …

objective-c nsmutablearray nsmutabledictionary
Getting unique items from NSMutableArray

I have a question about Objective-C today involving NSMutableArray. Coming from a .net/c# background I'm having some trouble working …

objective-c nsmutablearray nsarray
How do I remove all objects from an NSMutableArray?

I need to remove all objects from an NSMutableArray. I can't seem to do this by enumerating as the code …

objective-c nsmutablearray
How to wrap a Struct into NSObject

this is supposed to be trivial… I think, but I can't find a way how to wrap a Struct variable …

iphone struct nsmutablearray nsvalue
How can I check If I got null from json?

Here I got from JSON [{"photo":null}] and I use this code NSMutableArray *jPhoto = [NSMutableArray arrayWithArray:(NSArray *)[jsonDict valueForKey:@"photo"]]; …

iphone objective-c ios json nsmutablearray
NSMutableArray add object with order

I have a NSMUtableArray which has elements, for example: a,b,c,e And I want to add an object …

objective-c nsmutablearray sorting