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

learn more… | top users | synonyms

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 ...
0
votes
2answers
658 views

NSMutableArray addObject not affecting count?

Can anyone tell me why logging [self.giftees count] keeps returning 0 even though I'm adding objects to it? header: #import <UIKit/UIKit.h> @interface Test2AppDelegate : NSObject ...
0
votes
4answers
364 views

Cannot add items to an NSMutableArray ivar

My goal is to add a string to array, and I do that in a method which I call. In this method, I get a null value in the array, and don't know why. I have this at the start of my class: NSMutableArray ...
20
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 ...
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 ...
3
votes
1answer
3k views

iOS: store two NSMutableArray in a .plist file

I want to store two NSMutableArray that I use as global array in AppDelegate. These two array are also store with NSUserDefaults. Now I want to know how I must create this file and how can I store ...
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 ...
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 ...
39
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, ...
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 ...
22
votes
3answers
15k views

Difference between NSArray and NSMutableArray

What is the difference b/w NSArray and NSMutableArray ? i am new to iPhone.
3
votes
3answers
2k views

How to add properties to NSMutableArray via category extension?

I know that I can "subclass" an NSMutableArray using "category extensions," i.e. @interface NSMutableArray (MyExtension), to add new functions to the class. However, is there a way using category ...
109
votes
3answers
55k views

How do I convert NSMutableArray to NSArray?

How do I convert NSMutableArray to NSArray in objective-c?
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 ...
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" ...
6
votes
2answers
4k views

Shuffling an array in objective-c [duplicate]

Possible Duplicate: What’s the Best Way to Shuffle an NSMutableArray? I develop apps for iphone/iPad.I want to shuffle the objects stored in an NSArray.Is there any way to achieve it with ...
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 ...
5
votes
2answers
5k views

Objective-C : Sorting NSMutableArray containing NSMutableArrays

I'm currently using NSMutableArrays in my developments to store some data taken from an HTTP Servlet. Everything is fine since now I have to sort what is in my array. This is what I do : ...
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 ...
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?
4
votes
3answers
3k views

How to do sparse array in Cocoa

I have an undetermined size for a dataset based on unique integer keys. I would like to use an NSMutableArray for fast lookup since all my keys are integer based. I want to do this. ...
0
votes
1answer
392 views

NSMutableArray Data Attachement With E-mail Body?

My NSMutableArray data are in NSData formate.I am trying to attached NSMutableArray data to E-mail body.Here is my NSMutableArray code: NSUserDefaults *defaults1 = [NSUserDefaults ...
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 ...
5
votes
3answers
287 views

Avoid copying NSMutableArray for reading with multithreaded writes

I have a class that uses a mutable array that is modified once after a lot of reads (new items arrive). The problem is that when times comes to mutate the array, reads keep coming. Currently to ...
3
votes
2answers
729 views

How to add alive object to NSMutableArray and remove them when they're released?

I have class Item and class List (which has an NSMutableArray). Every time class Item is instantiated (and destroyed) it posts a notification, which is listened-to by class List. When class List ...
1
vote
7answers
4k views

Removing duplicates from NSMutableArray

I have this problem with removing duplicate objects from an array. I tried these already: noDuplicates = _personalHistory.personalHistory; for (int i=[noDuplicates count]-1; i>0; i--) { if ...
1
vote
2answers
1k views

iPhone SDK: How do I pass an array of values from a ViewController onto other ViewController?

I tried creating a method like below in SecondViewController: -(void)setValue:(NSMutableArray*)array { //NSMutableArray *newArray = [[NSMutableArray alloc] init]; newArray = [array ...
4
votes
2answers
3k views

How to make an CFArrayRef to an NSMutableArray

This is my Code to create the CFArrayRef. I want to know how to make it to an NSMutableArray. I need it for my TableViewController. Or is there another way to use the CFArrayRef in the ...
3
votes
2answers
174 views

NSMutableArray removeObjectAtIndex strange issue.

Strange behaviour in NSMutableArray. I've created object and filled it. NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:@"1",@"2",@"3",@"4", nil]; [array ...
3
votes
3answers
11k views

Removing object from NSMutableArray

Just a small query... I stumbled across the following shortcut in setting up a for loop (shortcut compared to the textbook examples I have been using): for (Item *i in items){ ... } As opposed to ...
1
vote
2answers
237 views

UIBezierPath Multiple Line Colors

My attempt to draw UIBezierPath lines with different colors is failing me. All the lines change to the currently selected color. All my path and information are all stored in an NSMutableArray called ...
1
vote
2answers
173 views

What will be the numberOfRowsInSection return type for uitableview when XML data is retrieved?

I have a NSMutableArray named as records and a NSArray. Now I am retrieving an XML attribute and its value, using TBXML parser and inserting the attribute value in the NSArray. This NSArray is an ...
0
votes
4answers
178 views

addObject: to array not working (array still nil)

This app is a table view with a tab bar controller. I am logging the count of the array: arrayOfFavourites and even though i add an object is continues to have a nil value, my relating code, all ...
0
votes
3answers
407 views

Can i have a single NSMutableArray in my multiple views application?

I have a navigational based application which has multiple views. Is it possible to use one single NSMutableArray for the whole applicaiton? Can i add objects to that NSMutableArray in one view and ...
-1
votes
2answers
417 views

How to assign values from NSMutableDictionary to NSArray

I am doing JSON parsing and I want to show my parsed data in a UITableView. For that, I am trying to assign parsed data from NSMutableDictionary to NSArray to show in the table view but the array ...
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 ...
6
votes
1answer
3k views

What is the KVC Search Pattern for mutableArrayValueForKey?

I'm attempting to understand Cocoa's Key-Value Coding (KVC) mechanism a little better. I've read Apple's Key-Value Programming Guide but am still a little confused about how certain KVC methods ...
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 ...
5
votes
1answer
3k views

Synchronizing NSMutableArray for Thread Security?

HI All, I have a Threaded application, in which there is a NSMutableArray, which contains the NSManagedObjects, Now i want my array to be accessed once at a time by any Thread. So how do i ...
5
votes
1answer
7k views

problem writing a NSMutableArray to file in cocoa

A real beginners question. I have a NSView subclass in which I create a NSMutableArray containing NSValues. When I want to write the array to a file using writetofile:atomatically: the file is created ...
4
votes
3answers
3k views

how can I Add a ABRecordRef to a NSMutableArray in iPhone?

I want to create an array of ABRecordRef(s) to store contacts which have a valid birthday field. NSMutableArray* bContacts = [[NSMutableArray alloc] init]; ABAddressBookRef addressBook = ...
6
votes
3answers
4k views

How to remove elements in NSMutableArray or NSMutableDictionary during enumeration?

I am using block based enumeration similar to the following code: [[[rows objectForKey:self.company.coaTypeCode] objectForKey:statementType] enumerateObjectsWithOptions:NSEnumerationConcurrent ...
4
votes
4answers
6k views

what does -arrayWithArray actually DO?

I want to see EXACTLY how it creates an array. How can I view the .m files that show how it's done?
3
votes
2answers
2k views

How to sort an NSMutableArray of objects by a member of its class, that is an int or float

I have a class (from NSObject) that contains: NSString name int position float speed I then create an array (NSMutableArray) of objects from this class. I would like to then sort the array ...
2
votes
2answers
3k views

Objects not being added to NSMutableArray Objective -C

I'm trying to simply add objects to a mutable array but they WILL NOT insert. I'm not getting errors or anything and I can't figure out whats going on. In my main delegate file I split an array into ...
5
votes
2answers
10k views

Sort strings in NSMutableArray into alphabetical order [closed]

I have a list of string in an NSMutableArray, I want to sort them in alphabetical order before displaying in my table view.
3
votes
4answers
3k views

Finding Intersection of NSMutableArrays

I have three NSMutableArray containing names that are added to the lists according to different criterieas. Here are my arrays pseudocode: NSMutableArray *array1 = [@"Jack", @"John", @"Daniel", ...
2
votes
2answers
613 views

Order two NSMutableArrays based on one

I have two NSMutableArrays. The content of the first is numerically, which is paired to the content of the second one: First Array Second Array 45 Test45 3 Test3 ...
2
votes
4answers
2k views

How to passing a NSMutableArray to another ViewController class

I have created NSMutale Array in "HeroListViewController". I want use it in another viewController which is MapTutorialViewController. I tried like this. in HeroListViewController.h ...
2
votes
2answers
4k views

How to convert the NSMutableArray to CSV file on iPhone?

I am writing an iPhone application, which contains a function. It can convert the NSMutableArray to a CSV file. However, I don't know how to do. Can anyone help me to do this? Thank you very much. // ...

1 2 3 4 5 6