NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.
111
votes
3answers
56k views
How do I convert NSMutableArray to NSArray?
How do I convert NSMutableArray to NSArray in objective-c?
58
votes
3answers
18k views
Join an Array in Objective-C
I'm looking for a method of turning a NSMutableArray into a string. Is there anything on a par with this Ruby array method?
>> array1 = [1, 2, 3]
>> array1.join(',')
=> "1, 2, 3"
...
40
votes
7answers
17k views
NSMutableArray addObject: -[__NSArrayI addObject:]: unrecognized selector sent to instance
I have tried to initialize my NSMutableArray 100 ways from Sunday, and NOTHING is working for me. I tried setting it equal to a newly allocated and initialized NSMutableArray, just allocating, ...
36
votes
1answer
20k views
How to return an NSMutableArray from an NSSet
I'm able to put the contents of an NSSet into an NSMutableArray like this:
NSMutableArray *array = [set allObjects];
The compiler complains though because [set allObjects] returns an NSArray not an ...
30
votes
1answer
5k views
How to store CGRect values in NSMutableArray?
How would I store CGRect objects in a NSMutableArray, and then later retrieve them?
23
votes
6answers
24k views
Copy & mutableCopy?
What is the difference between the "copy" & "mutableCopy"?
EDIT_001:
My original post was a bit of a mess, partly due to a lack of understanding and partly due to a bit of pilot error on my ...
22
votes
3answers
15k views
Difference between NSArray and NSMutableArray
What is the difference b/w NSArray and NSMutableArray ? i am new to iPhone.
21
votes
3answers
44k views
How to sort NSMutableArray using sortedArrayUsingDescriptors?
I have a question about sorting NSMutableArray. I can use sortedArrayUsingDescriptors: method to sort an array with objects.
For example I have an NSMutableArray of places where I have an ...
20
votes
8answers
14k views
how to add nil to nsmutablearray?
NSArray *array = [[NSArray alloc] initWithObjects:@"ΕΛΤΑ",
@"ΕΛΤΑ COURIER", @"ACS", @"ACS ΕΞΩΤΕΡΙΚΟ",
@"DHL", @"INTERATTICA", @"SPEEDEX",
...
19
votes
5answers
6k views
Disadvantage of using NSMutableArray vs NSArray?
I'm using an array to store cached objects loaded from a database in my iPhone app, and was wondering: are there any significant disadvantages to using NSMutableArray that I should know of?
edit: I ...
19
votes
2answers
6k views
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 figure out how to get it to pick the right items out of my Array.
If Section 1 (Arizona) has 2 ...
16
votes
2answers
17k views
NSMutableArray addObject not working
I have declared an NSMutableArray *categories in my view controller .h file, and declared a property for it.
In the parser:foundCharacters: method of the NSXMLParser delegate in my .m file, I have ...
15
votes
2answers
14k views
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 front of the array?
15
votes
3answers
31k views
How to addObject of NSMutableDictionary to NSMutableArray in a loop
I'm having difficulty to add a data structure to an array to create an array of dictionaries from a loop. I just knew that addObject in NSMutableArray only add pointer to it. I would like to know how ...
14
votes
4answers
32k views
How can I fill an NSArray dynamically?
I have a for loop. Inside that loop I want to fill up an NSArray with some objects. But I don't see any method that would let me do that. I know in advance how many objects there are. I want to avoid ...
13
votes
3answers
3k views
Should I subclass the NSMutableArray class
I have an NSMutableArray object that I want to add custom methods to. I tried subclassing NSMutableArray but then I get an error saying "method only defined for abstract class" when trying to get the ...
12
votes
1answer
8k views
How do I reverse the order of objects in an NSMutableArray? [duplicate]
I'm trying to achieve something like this
NSMutableArray *myArray = [NSMutableArray arrayWithObjects:@"A",@"B",@"C", nil];
NSLog(@"Array: %@", myArray);
//logs A, B, C.
//reverse code here
...
12
votes
3answers
4k views
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 d to behind c and before e.
In other words, I'd like to insert an object to a sorted array.(The object ...
12
votes
4answers
1k views
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 syntax for creating an NSMutableArray or an NSMutableDictionary?
11
votes
5answers
29k views
Total Size of NSMutableArray object
I've got an NSMutableArray that holds a bunch of objects, what I'm trying to figure out is how much memory is the array using. After looking at a couple of places I know about the size of call, and ...
11
votes
6answers
5k views
Objective C: how to check if variable is NSArray or NSMutableArray
How can i check if a variable is an NSArray or an NSMutableArray?
11
votes
2answers
4k views
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 into an NSObject. Is there a method to do so? If not, how would I go about adding a struct into an ...
10
votes
2answers
10k views
10
votes
1answer
9k views
How to change the value of an NSMutableArray at a particular index
[array objectAtIndex:i] doesn't work as an L value, so it can't be used to set the object at index i.
10
votes
3answers
5k views
Cocoa structs and NSMutableArray
I have an NSMutableArray that I'm trying to store and access some structs. How do I do this? 'addObject' gives me an error saying "Incompatible type for argument 1 of addObject". Here is an example ...
10
votes
2answers
4k views
NSMutableArray initWithCapacity nuances
Does anyone have advice on how to best initialize an NSMutableArray when it comes to dictating the capacity? The documentation mentions that "...even though you specify a size when you create an ...
10
votes
7answers
6k views
NSMutableArray - force the array to hold specific object type only
Is there a way to force NSMutableArray to hold one specific object type only?
I have classes definitions as follow:
@interface Wheel:NSObject
{
int size;
float diameter;
}
@end
...
10
votes
4answers
16k views
How to Sort an NSMutableArray of Managed Objects through an object graph
I'm new to Apple's iPhone 3.0 SDK support of Core Data and I'm relatively new to iPhone development. My question is on slightly more "complex" sorting than is covered in the docs. I suspect that I am ...
10
votes
1answer
6k views
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 is that this isn't a supported type in Core Data.
I tried making a tranformable attribute, but ...
10
votes
1answer
4k views
UIActivityViewController - Email and Twitter sharing
I recently started working with UIActivity to share my app to the world, but I have few problems. First, I didn't find how to set the subject of my email. Is there any way? Second, when I set the body ...
9
votes
3answers
6k views
NSMutableSet vs NSMutableArray
What's the difference?
In my context, I need to be able to dynamically add to and remove objects. The user clicks on rows of a table that check on and off and thus add or remove the referenced object ...
8
votes
3answers
11k views
NSMutableArray from NSArray
i have the following code and i want to use NSMutable arrays instead of NSArray
could you tell me how to load the NSMutable array, as the current method does not work.
-(void) whatever{
NSData ...
8
votes
4answers
10k views
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] init];
with elements such as "2", "4", "5", ...
8
votes
8answers
15k views
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 be added to my datasource NSMutableArray.
I now want to check if the object to be added from the ...
8
votes
3answers
12k views
Objective-C: Comparing string with if() values doesnt work on [NSMutableArray objectatindex:]
i've populated a NSMutableArray with NSMutableString Values in my program using NSXML Parser.
i can succesfully fetch results from the array with objectatindex method, but when i try to compoare ...
8
votes
2answers
4k views
Remove duplicates nsmutableArray
i tried doign this: Values = [[NSSet setWithArray:Values] allObjects]; and no sucess,
Thanks
8
votes
2answers
3k views
How Sorting array which contains Dictionary?
I have an array which contains a dictionary in it; so how can I sort the array according to dictionary key values?
8
votes
2answers
14k views
How to convert NSArray to NSMutableArray
ABAddressBookRef addressBook = ABAddressBookCreate();
CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook);
CFIndex nPeople = ABAddressBookGetPersonCount(addressBook);
...
7
votes
4answers
1k views
Objective C - Is NSMutableArray thread-safe?
I've been trying to fix this crash for almost a week. The application crashes without any exception, or stack-trace. The application does not crash in any way while running through instruments in ...
7
votes
4answers
6k views
Copying an NSArray with mutable copies of the original elements
I am creating an array of dictionaries in a class. I want to return a copy of that array to any other object that asks for it. This copy that is passed to other objects needs to be modified without ...
7
votes
2answers
775 views
Storing a block in a collection
Is it possible to directly store a block in a collection such as NSArray?
7
votes
1answer
6k views
How to copy a NSMutableArray
I would simply like to know how to copy a NSMutableArray so that when I change the array, my reference to it doesn't change. How can I copy an array?
7
votes
2answers
74 views
Having trouble adding objects to NSMutableArray
Im having truble adding objects to my 2 NSMutableArrays. The data comes from a database and I know that my parsing is correct because I get valid outputs when I use the NSLog. However I can't figur ...
7
votes
1answer
190 views
Bind rows NSRuleEditor with array
In developer documentation i found this:
NSRuleEditor exposes one binding, rows. You can bind rows to an
ordered collection (such as an instance of NSMutableArray). Each
object in the ...
6
votes
3answers
3k views
6
votes
3answers
3k views
Cocoa NSString explode
I have a NSString: @"1a,1b,1c,1d,5c". I want this NSString separated into a NSMutableArray, but I don't know how. I think it is fairly simple but I can't find it (maybe because my English isn't good ...
6
votes
4answers
9k views
How to swap values in NSMutableArray?
This piece of codes segment fault on me, any idea why? allButtons is a NSMutableArray, it contains 3 objects, a=0, b=1, a and b are int type
if(a != -1 && b!= -1){
//Swap index in ...
6
votes
1answer
1k views
Swapping elements in an NSMutableArray
Are there any special methods to make swapping elements in an NSMutableArray easier or more direct?
6
votes
2answers
4k views
How to slice NSMutableArray
I have a NSMutableArray and need objects [0:5] only. Is there a simple way to slice? Can I drop all objects after index? Can I copy a sub-array to another NSMutableArray?
6
votes
3answers
4k views
UITableView grouping sections from NSMutableArray
I have an app that basically reads an xml file and displays the results in a UITableView. I am trying to group the list items by "country" (an attribute of the xml file elements) and display them in ...