Tagged Questions
NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.
23
votes
4answers
7k 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"
...
13
votes
5answers
6k 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, ...
10
votes
1answer
4k 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 ...
9
votes
6answers
10k 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 ...
7
votes
5answers
2k 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?
7
votes
4answers
9k 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 ...
7
votes
4answers
17k 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 ...
6
votes
3answers
164 views
Returning mutable vs. returning immutable (non-member-)objects
I hardly ever see the second one used and I wonder why?
Neither would it break support for situations where an NSArray is expected (as it's a subclass).
Nor would it break encapsulation by revealing ...
6
votes
3answers
12k 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 ...
6
votes
3answers
20k 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 ...
6
votes
2answers
3k 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 ...
6
votes
5answers
3k 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 ...
6
votes
2answers
8k views
Difference b/w NSArray and NSMutableArray
What is the difference b/w NSArray and NSMutableArray ? i am new to iPhone.
5
votes
1answer
236 views
removeObjectAtIndex causes “message sent to deallocated instance”
I am converting some code to ARC. The code searches for an element in an NSMutableArray, then finds, removes, and returns that element. The problem is that the element gets deallocated immediately ...
5
votes
2answers
228 views
Objective-c return method returning NSMutableArray instead of declared NSArray return type
If I want to return an immutable array like this + (NSArray *)ids but inside this method I'm declaring a NSMutableArray because I want to sort it using -sortUsingSelector:.
Returning this method ...
5
votes
2answers
1k 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 ...
5
votes
3answers
869 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
1answer
868 views
How to store CGRect values in NSMutableArray?
How would I store CGRect objects in a NSMutableArray, and then later retrieve them?
5
votes
8answers
5k views
how to add nil to nsmutablearray?
NSArray *array = [[NSArray alloc] initWithObjects:@"ΕΛΤΑ",
@"ΕΛΤΑ COURIER", @"ACS", @"ACS ΕΞΩΤΕΡΙΚΟ",
@"DHL", @"INTERATTICA", @"SPEEDEX",
...
5
votes
5answers
13k 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 sizeof call, and ...
5
votes
2answers
3k 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 ...
4
votes
1answer
96 views
for … in loop with addObject seems to be leaking
the following loop:
NSMutableArray *array1 = [[NSMutableArray alloc] init];
for(SomeClass *someObject in array2){ //has already been populated;
if (someObject.field == desiredValue){
...
4
votes
1answer
110 views
Objective C - Sort NSmutableArray that contains 2 types of object?
I have an NSMutableArray that contains 2 types of Objects.
Both objects contain a field for dates (date Strings with different formats) with different names.
What's the best and fastest way to sort ...
4
votes
3answers
56 views
Is it important / good to convert mutables to immutables before returning them?
If I'm using a method to return an NSArray, and inside that method I build up the result as a NSMutableArray, I'm often tempted to put return [NSArray arrayWithArray:myMutable] instead of return ...
4
votes
1answer
80 views
creating a Mutable array that can be added to in later clicks of the same button?
General noob questions:
(1) How can I create an NSMutable array in a buttonClicked action that I can add more entries to during subsequent clicks of the same button? I always seem to start over with ...
4
votes
1answer
475 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 ...
4
votes
1answer
206 views
Storing a block in a collection
Is it possible to directly store a block in a collection such as NSArray?
4
votes
2answers
618 views
Problem in loading a NSMutablearray value into table view?
I am new to iphone development, I am trying to load a NSMutableArray values into a table view, I am using code below for this which generates error as specified. Can some one help me in rectifying ...
4
votes
2answers
855 views
Remove duplicates nsmutableArray
i tried doign this: Values = [[NSSet setWithArray:Values] allObjects]; and no sucess,
Thanks
4
votes
6answers
2k views
How to make a Global Array?
So, I read this post, and it's pretty much exactly what I was looking for. However... it doesn't work. I guess I'm not going to go with the singleton object, but rather making the array in either a ...
4
votes
4answers
2k views
Cocoa Touch Question. Should [NSMutableArray array] be retained?
Here is the gist of some code I'm writing. I'm concerned that I am not properly addressing the retain/release issues with the array class method on NSMutableArray. Is the following actually leaking ...
4
votes
3answers
18k views
NSMutableArray add Object as pointer only?
I have this little code
NSMutableArray *myArray = [[NSMutableArray alloc] init];
NSNumber *myNumber = [NSNumber numberWithDouble:752.65];
[myArray addObject:myNumber];
With this code I store ...
3
votes
3answers
78 views
Adding objects from another array
I have the following code:
for (int i = 1; i <= [nmaSpread count];)
{
[nmaUserName addObjectsFromArray:[nmaSpread objectAtIndex:i]];
[nmaSpread removeObjectAtIndex:i];
i += 2;
}
I ...
3
votes
3answers
86 views
Sending message to objectForKey to NSMutableArray instance, And it works!! Strange?
I have a very bad code written in my program, was just playing around as I am learning Objective C and iOS platform. What I did is,
I have created NSMutableArray like this,
placeInfo = ...
3
votes
1answer
114 views
iPhone - Sorting of NSMutableArray containing NSDictionary with 2 keys
Hihi all,
I have an NSMutableArray containing various NSDictionary. In each of the NSDictionary, I have two key-value-pairs, eg: username and loginDate.
I would need to sort all NSDictionary in this ...
3
votes
1answer
69 views
NSMutable array to UITableview when button clicked
i want to show my email headers in a UITableView when inbox button clicked, my email headers is stored in an NSMutable Array,
-(IBAction)buttonInbox:(id)sender{
NSLog(@"Inbox Button ...
3
votes
3answers
49 views
Memory Leak with NSMutableArray
I am trying to set up a multi-dimensional NSMutableArray. I am initially setting all position to a [NSNumber numberWithInt:0] then replacing the object with another [NSNumber numberWithInt:4] (for ...
3
votes
2answers
188 views
What happens if NSMutableArray is modified by multiple threads at the same time? (if the objects it contains are retained elsewhere)
I have an NSMutableArray containing many objects.
What happens if a change is made to the array, while I am making a copy of the array using [NSMutableArray arrayWithArray:someArray];
Eg: If an ...
3
votes
3answers
54 views
Noob mystified by NSMutable array's behaviour
I'm a noob, trying to get my head around using XCode to put together a very simple interface for a very simple Mac app.
I've stripped my app down as much as possible to illustrate the snag I've hit.
...
3
votes
1answer
64 views
plist segment control save issue
I have a issue with this peice of code, I am trying to save some data to a plist for later use, and if the user reopens the view, it should have the current segment selected for each segment control ...
3
votes
1answer
162 views
How to store multiple co-ordinates and map kit plot route
I'm currently designing a new application for the iPhone. Basically I would like to track the users movements, store them and the display them later on a map.
What is the best way to store the ...
3
votes
2answers
209 views
Autoreleased NSMutableArray not populated
I want to populate an array like this:
NSMutableArray *array = [self methodThatReturnsAnArray];
In the "methodThatReturnsAnArray"-method I create an array like this:
NSMutableArray *arrayInMethod ...
3
votes
2answers
384 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 ...
3
votes
2answers
876 views
Do I need to initialize an iOS empty nested array that's part of a plist import?
the code below is working, but I want to make sure it's correct. I'm nervous about having an empty Array inside my dictionary that I create from the plist, since typically it seems that if you don't, ...
3
votes
2answers
402 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?
3
votes
5answers
868 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
3answers
237 views
NSMutableArray crashes when adding after proper initialization
I have an NSMutableArray defined as a property, synthesized and I have assigned a newly created instance of an NSMutableArray. But after this my application always crashes whenever I try adding an ...
3
votes
2answers
142 views
how can I display MSMutableArray data in UITableViewController?
I am getting data from NSTextField, and saving data in NSMutableArray. I want to show the same data in another class which in child of UITableViewController.
How can I show data of NSMutableArray to ...
3
votes
2answers
456 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?
3
votes
3answers
532 views
Having problems using NSMutableArray with NSTableView (Cocoa)
I'm having a problem trying to use an NSMutableArray with a NSTableView controller in my simple ToDo list application. Adding items does not work and trying to delete items gives me the error ...