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

learn more… | top users | synonyms

1
vote
1answer
14 views

inserting object crash on Mutable array?

Inserting object causing crash on next line "//Crashing". NSUInteger count=indexPath.row+1; NSMutableArray *arCells=[NSMutableArray array]; for(NSDictionary *dInner in ar ) { ...
0
votes
1answer
12 views

checkbox persists after a row is deleted from a table

I have built a checkbox feature on a table using this page: http://www.carrotcoded.com/2012/12/02/uibutton-within-uitableviewcell-checkbox/ This works fine, and I can check and uncheck boxes. ...
-9
votes
3answers
79 views

How to find array last element [closed]

NSMutableArray * arr = [[NSMutableArray alloc]initWithObjects:@"1",@"2",...@"n" ,nil]; how to get last position of this array Any help really appreciated Thanks in advance
0
votes
4answers
45 views

Grouping the NSArray elements into NSMutableDictionary

I have an NSArray some thing like in the following format. The group array is : ( "Q-1-A1", "Q-1-A9", "Q-2-A1", "Q-2-A5", "Q-3-A1", "Q-3-A8", "Q-4-A1", "Q-4-A4", ...
0
votes
1answer
37 views

Program crashing after adding subview from NSMutableArray

Right now I have a UIView with two subviews on it. I am trying to add another subview to one of those views, from a custom-made Card class. The problem is that the subview is coming from an ...
0
votes
3answers
81 views

Objective C why are the objects from my NSMutableArray disappearing?

I'm new to Objective-C and iOS. I'm having trouble with something that is probably easily corrected, but I have no idea why it's happening. I'll try to give a brief description of what I'm doing and ...
1
vote
2answers
77 views

how to set a property of an object inside a NSArray

I have written a class which has a property, I want to add instances of this class into a mutable array and after that I want to set the num property of the instances. but I dont know the correct ...
-1
votes
1answer
53 views

Passing an NSMutableArray as an argument, not working

I have a method that calls my API and I want to choose where the data goes so I set up the method like so: - (void)getTheDataFromURL:(NSString *)urlString intoArray:(NSMutableArray *)arrayData{ ...
0
votes
0answers
13 views

passing array to a tabelvew through segue

I have an app that shows a tablieview controller on startup, then its pushes to a viewcontroller where I type in a label and hit a button. When that button is clicked, it pops me back to the tableview ...
0
votes
2answers
63 views

NSMutableAray RemoveObject: Not Working As Expected

I have recently begun working with cocoa and Objective-C, although I am not new to software concepts, and I have come across some curious and unanticipated behavior in the NSMutableArray Class. ...
-3
votes
2answers
37 views

Split an NSMutableArray into other NSMutableArrays

I have an NSMutableArray with 50 entries - is there any easy way to split this into 5 NSMutableArrays each with 10 entries each.
0
votes
1answer
31 views

why does my for loop miss the first element in the NSMutableArray on which it operates?

I am trying to loop through an NSMutableArray of Persistent IDs of songs in my iPod Library, perform an MPMediaQuery with each ID, and initialize an MPMediaItemCollection from an NSMutableArray of the ...
1
vote
0answers
18 views

UICollectionView Cells Loading Same Items too many times

Here is the layout of my app. I have a UICollectionView in a Tab Bar Controller. I have two different XML files located on server. Depending on subscription purchases, one of two xmls will be ...
0
votes
1answer
33 views

NSMutableArray collection and @Synchronized blocks

In Objective C I'm using a NSMutableArray instance from various thread and I'm using @synchronized to make it thread safe. currently all my acces to this array are protected with a @synchronized ...
0
votes
1answer
17 views

NSMutalbeArray addobject but overwrite previous objects

current array is like (a, b, c), need to change their order, like(b,c,a),and (c,a,b),then add them to a new array, final goal is to get an array like (( a, b, c,), (b, c, a), (c, a, b)) codes ...
0
votes
1answer
29 views

Why are my mutable arrays and table views behaving unexpectedly?

I'm building a sign-in app. It has two table views. One lists people who have visited before (existingNames), and one lists the current people signed in (names). At certain points in my code the only ...
0
votes
1answer
50 views

Why data added in to array multiple times?

I load data from json and then add it to nsmutablearray like this: - (void)loadData { dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); ...
-1
votes
2answers
35 views

How to sort multi-dimensional array in objective-c?

I'm having a two dimensional array as follows NSArray *cities = [NSArray arrayWithObjects:@"New Delhi",@"Karachi",@"Dhaka",@"Columbu", nil]; NSArray *distance = [NSArray ...
-2
votes
2answers
61 views

How can i access my array object one by one?

Hello i want to access my array objects through loop one by one.. i am using this code for doing this but this is not returning proper value.. please guide me where i am going wrong? if em doing wrong ...
1
vote
1answer
48 views

How to retrieve array in php sent from iOS

Following is my iOS code that sends NSmutable Array to PHP webservice: // Getting Server Address AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate]; ...
0
votes
0answers
35 views

How to increase value in NSMutableArray by button press

I load data in tableview from server with json. - (void)loadData { dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(queue, ^{ ...
0
votes
1answer
40 views

Copy NSMutableArray and change it

I have method : -(void)ModifyArray:(NSMutableArray)orginalArray { NSMutableArray* copy = [[NSMutableArray alloc]init]; copy = [orginalArray copy]; Field* field = [copy objectAtIndex:0]; [copy ...
0
votes
0answers
13 views

nsarraycontroller - nstableview add: method not working

I have an NSMutableArray populated with instances of a "student" class I wrote that is bound to an NSArrayController, which in turn is bound to an NSTableView. The data in the tableview is displayed ...
5
votes
2answers
154 views
+50

Importing, Displaying and Caching of large data

I'm trying to get data from some where and save it in a NSMutableArray of custom objects that contain that data and info. Every time the user opens the app the same data is loaded from source and ...
0
votes
3answers
35 views

how add empty object on 2D array

I have 2D NSMutableArray with my class objects. Example: NSMutableArray *myArray2D = [[NSMutableArray alloc] init]; for (int i=0;i<10;i++) { NSMutableArray *myArray = [[NSMutableArray ...
0
votes
1answer
11 views

filtering objects from nsmutablearray with a nsarray of string values

I have a NSMutableArray called "scoreBoard" which has hundreds of objects with properties name,score,id I also have a NSArray called "friends" with a list of strings I want to scan all objects "id" ...
0
votes
1answer
36 views

How to use insertObjectAtIndex

in my app there is are 4 textFields (0,1,2,3). When the user type something and hit the return-Key, i want to save the content of this textField in an array. But i need the right order. For example, ...
0
votes
2answers
61 views

Issue with Sorting NSMutableArray

I have an NSMutableArray which contains an NSDictionary, I need to sort the array based on certain criteria. Sorting criteria is sort based on properties.property.value, suppose if I want to sort ...
0
votes
1answer
18 views

error passing array of object between view and tableview

I'm struggling on this problem where I try to pass a NSMutableArray of objects from a view controller to UITableController but I Always get an error like this: 2013-06-08 00:08:42.098 ...
0
votes
2answers
30 views

About modifying contents of NSMutableArray

I have a NSMutableArray, called buttonContainer that contains UIButtons. The thing is I want to change the CGRectmake() of every button with a new value, is there an easy way to do this? I'm trying ...
1
vote
2answers
101 views

Remove duplicates from NSArray of Custom Objects also compare and edit same

I have two NSMutableArrays. Each contains a custom word object in it. Custom word has 2 properties text and frequency. Now I want to combine these two arrays in such a way that, if these two arrays ...
2
votes
5answers
60 views

Optimised array shift method

I have an NSMutableArray holding NSStrings e.g. {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} I would like to be able to shift elements with wrapping. So e.g. move 1 to the centre, shifting all elements, wrapping ...
0
votes
1answer
45 views

Why am I getting a NSFastEnumerationMutationHandler with this NSMutableArray code?

Can someone help me understand what I am doing wrong here that would caused this stack trace: 1 libobjc.A.dylib 0x3a8a897a objc_exception_throw + 26 2 CoreFoundation ...
1
vote
2answers
55 views

AFNetworking JSON to UITableView - Objective - C

So I'm working on my first app and starting to bang my head against the wall. I created a C# web API that spits out simple JSON. I'm using AFNetworking and getting a valid response (I believe) and now ...
0
votes
1answer
43 views

How do would you split this given NSString into a NSDictionary?

I have some data i aquire from some linux box and want to put it into a NSDictionary for later processing. How wold you get this NSString into a NSDictionary like the following? data ( bytes ( ...
1
vote
1answer
23 views

How to group an NSMutableArray and show in UITableView?

I get json from server and add them in NSMutableArray like this: { "title": "title60", "summary": "summary60", "datetime": "2013.02.03", } { "id": 58, "title": "title59", "summary": ...
0
votes
1answer
38 views

Objective-C: Recursive method that changes property of self

I have a recursive method that changes a property of self (the object on which the method is defined). I get the error: ...uncaught exception 'NSGenericException', reason: '*** Collection ...
0
votes
1answer
34 views

How do you reload a tableView in ios6 with a mutable array?

I have a tableview set up with data from a mutable array but I cannot figure out how to reload it, or even if it's being loaded in the first place. The mutable array is changed when a user presses a ...
0
votes
3answers
68 views

How to load an array from soap and display on table view?

I tried load array from soap and display member of array on tableview. When run I get this error: App[711:c07] Log Output:(null) 2013-06-05 13:18:58.198 App[711:c07] *** Terminating app due to ...
0
votes
4answers
71 views

modify an nsmutablearray in another class

I have a NSMutableArray of seven bools in managerViewController, these represent days of the week when a shop is open. I am running out of space in this view and most of the time the user will be ...
1
vote
2answers
29 views

NSTableColumn sorts numbers wrongly

This is a NSTableView with IB bindings to a NSArrayController, it displays all values correctly. However it sorts the numbers only by their first char value e.g. it will put 115.31 below 2.5, and ...
0
votes
1answer
37 views

KVO on a collection

I added a observer to my collection, and observe the count on it [[[JHTaskSave defaults] tasks] addObserver:self forKeyPath:@"count" options:NSKeyValueObservingOptionNew | ...
0
votes
1answer
37 views

NSMutableArray with init and mutableCopy, how to autorelease?

I've gone crazy trying to find a leak with an NSMutableArray: NSMutableArray *mutablearray =[[[[NSMutableArray alloc] initWithArray: array] mutableCopy] autorelease]; Finally I understood that I ...
-1
votes
1answer
41 views

how to add object from one key NSDictionary in NSMutableArray

I have one NSDictionary and one NSMutableArray And I want store many object from NSDictionary into NSMutableArray from one key but I dont know about it. this is my code : //NSArray * a = [[NSArray ...
-1
votes
2answers
134 views

NSArrayM insertObject:atIndex:]: object cannot be nil

HI here is the below function where i am collecting NSString values like firstname and last name from the function and assign in it array - (void)getPersonOutOfAddressBook { ABAddressBookRef ...
0
votes
2answers
18 views

CCParticleSystemQuand not dealloced

I want to do a very simple thing but it's not working. I want to add some CCParticleSystemQuad in an NSMutableArray and delete them. Here is what I do : int cpt = 0; NSMutableArray *myArray = ...
0
votes
0answers
45 views

iOS RSS Feed Searching through NSMutableArray

I was trying to make a RSS application that supports searching through the RSS feeds. My code is on Github (link: https://github.com/sammy0025/SST-Announcements). The view controller I was trying to ...
1
vote
4answers
48 views

Mutable Objects inside NSUserDefaults

I created a simple database and put in NSUserDefaults. My database is NSMutableArray which has dictionaries and arrays inside in it. When I create NSMutableArray from NSUSerDefaults I can't add any ...
0
votes
1answer
87 views

Queue a NSMutableArray into a NString as a loop?

If one had a NSString that needed a userid to be used as a URL for a request: And one had a NSMutableArray that he wanted to Queue into the above call one at a time? So basically make 3 calls of ...
1
vote
4answers
106 views

Objective-C: Copy Array, Modify Element (Object) in the Copy ONLY

I've read through many SO posts before asking this question and I'm guessing this answer was in there somewhere, but I didn't see it. I'm new to Objective-C and I'm trying to do a (seemingly) simple ...

1 2 3 4 5 62