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

learn more… | top users | synonyms

0
votes
1answer
85 views

Creating array of quiz questions that do not repeat

I'm trying to create a basic quiz app where the questions will not repeat. I've looked at several examples and believe I should be storing the questions in an array and then removing one from the ...
0
votes
1answer
14 views

Print to Array each a button is pressed from Textview

I am trying to print to array each time I press a button. Here is my code array = [[NSMutableArray alloc] initwithObject:textview.text,nil]; The output I am getting is: :test And then when I ...
-2
votes
2answers
55 views

How can i move values from NSMutablearray to NSDIctionary? [closed]

I am saving a set of values with keys in NSMutableDictionary and write that data to NSMutableArray. I tried to retrieve the same from server i am getting this kind of value ( { ID=1; ...
0
votes
1answer
61 views

NSMutableArray appears empty but is being populated

Am having a major problem with an NSMutableArray, I'm probably missing something really obvious - have probably been looking at it so much that I just can't see it. Am reading some Tweets and then ...
3
votes
2answers
25 views

Converting an object of an array

I have the following block of codes in my program. for(int k=0;k<reqroom.count;k++) { NSString *rent=[roomRent objectAtIndex:k]; NSString *tax=[roomTax objectAtIndex:k]; NSString ...
0
votes
1answer
36 views

How do would you split this 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 ( eth0 (Errors ...
2
votes
2answers
81 views

Filtering an NSMutableArray of objects by starting date

I'm working on an iOS app and I have an NSMutableArray of objects , objects are events with a starting date and an end date . The starting date is in a timestamp format , the end date isn't. I want ...
0
votes
1answer
30 views

withSortColumn sorting failed with 2 digits

In my application i have used the the following code to set the array value from core data,i want add the array value withSortColumn reference @"companyNormalOrder". The @"companyNormalOrder" having ...
0
votes
2answers
50 views

iphone sdk+How to retrive dictionary inside array of dictionary values

i want to retrive KpiName key(KpiData is array inside kpiName is dictionary key) and my data structure mentioned below --Array of dictionaries inside array of dictinary ex..listOfProjectsArray--( ...
0
votes
4answers
42 views

Synthesized NSMutableArray is returning null

So I've declared this in my appDelegate.h @property(nonatomic,strong) NSMutableArray *featured; I've synthesized it like so in my appDelegate.m @synthesize featured; When I log ...
0
votes
1answer
30 views

NSMutablearray addObject is not working it overwrites data

I'm a beginner to XCode. 1- I have a view with UITableViewCell(FirstViewController) 2- I have another view(SecondViewController) that contains some textfields to get data from user 3- I have to pass ...
0
votes
2answers
43 views

Checking if object exist in object array without looping

I would like to check if my NSMutableArray contains my custom object. But if I understand correct contains functions searches for the same object in array (placed at the same memory point) ...
0
votes
2answers
41 views

Objective c: Getting error when adding object into NSMutableArray during threading

Here is what I want to achieve. 1. Searching all the files 2. find all .jpg files during the searching 3. save all .jpg file paths into NSMutableArray Here are the codes: Created the ...
0
votes
2answers
39 views

Sorting Array of Datas in Objective C

Say I have Stored some array of data using NSMutableArray. The stored array contains Timestamp and real time datas I am receiving array of size 6 each time from a sensor device. The first position ...
-3
votes
0answers
52 views

Reverse an NSMutableArray data

I can achieve reverse an NSMutableArray in two ways, they are - insertObject:atIndex:0 - [[self.array reverseObjectEnumerator] allObjects] from the above which one would perform better ...
0
votes
2answers
908 views

NSMutable Array from One Class to Another Class in iPhone

I have an NSMutable Array in FirstViewController class, I want to Pass that array to SecondViewController class. And I want to use that in SecondViewController class. I am doing this in Xcode 4.2.1 ...
1
vote
4answers
170 views

What will be the size(memory)of NSMutableArray?

I am parsing json data,and i store them into an NSMutableArray. For each data,parameters are as the following format, { "id":"6", "username":"biju", "password":"biju123", ...
1
vote
1answer
20 views

iOS NSXML dictionary not adding to array

I have an instance of the NSXML Parser parsing some xml and storing it in an array of objects. The XML has some image URLS and titles that I am trying to add to a dictionary, and then add the ...
1
vote
3answers
29 views

how to add UIImage from a NSMutableArray of images to UIButton using setImage

I have an array of UIImages which I have created like this UIImage *tButtonImage = [UIImage imageNamed:@"button-measurement.png"]; UIImage *tPButtonImage = [UIImage imageNamed:@"button-parts.png"]; ...
0
votes
1answer
43 views

(NSString *) description — not clear on something… (Objective-C)

Let's say I have two array's. Let's imagine one is a NSMutableDictionary, the other is an NSMutableArray. I also have this defined: -(NSString *) description { // return a human readable version ...
2
votes
3answers
77 views

Could [NSMutableArray array] return nil?

For example in low memory conditions. I'm reading third party code and I saw this NSMutableArray *array = [NSMutableArray array]; if (array != nil) { [array addObject:anObject]; } I've never ...
0
votes
2answers
75 views

Delegate/Protocol doesn't work: pass Array from TableViewController to parent ViewController

I have a parent ViewController (SearchViewController) which segues to a TableViewController (FilterTableViewController) where the User can select persons in the TableView. The selections are stored in ...
1
vote
2answers
27 views

Why my sorting method using NSSortDescriptor doesn't work well?

I filter my table result using NSPredicate NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"Name CONTAINS[cd] %@ OR Address CONTAINS[cd] %@", ...
0
votes
3answers
41 views

NSMutableArray not saved NSUserDefault

I'm trying to save a NSMutableArray with NSUSerDefault and then open the array. Here some code: -(IBAction)btnSave{ Class *aClass = [[Class alloc]init]; aClass.idClass=@"aaaxxx"; ...
0
votes
1answer
26 views

sort views in NSMutableArray

I am using a NSMutableArray to get all the subViews of a specific superView, everything works. Now i want to sort the array according to the subviews. EX: I have added 3 images, 1)Header 2)Image ...
0
votes
0answers
2 views

NSMutableDictionary keeps reference to original object after copying

I faced some copy issues today. I want to create an exact copy of an NSMutableDictionary. I tried using -mutableCopy and -initWithDictionary:copyItems:. -mutableCopy: It does create a copy but does ...
0
votes
1answer
26 views

URL arrays saving

I have an NSMutableArray and I put URLs in this array. there is no problem but when I save it with NSUserDefaults it doesn't keeps the content when I load it after closing the app. I also tried to ...
1
vote
1answer
84 views

Why is mutableCopy here?

I'm studying Your Second iOS App by Apple. This project is based on ARC. And while studying the example, I had a question concerning the following code from the example: // header @interface ...
-1
votes
2answers
70 views

Comparing a string in a NSMutableArray to a NSString

I'm very new to objective-c and this question may seem very simple so I am sorry if it is. I think I know how to get a user to input a string in C and comparing that to a string in an array by using ...
-2
votes
4answers
46 views

Add string to the 0th index of NSMutablearray? [closed]

i have a NSMutableArray "array1 " with 11 elements i want to insert one more string at the first position how can i do this ? i tried following code but this throwing exception NSArray *paths = ...
1
vote
2answers
56 views

a faster way to mutate an Array of NSMutableDictionaries

based on the fact that you cannot edit mutable Collections while enumerating them, this is the best solution i could come up with to edit a Array of NSMutableDictionaries: __block NSMutableDictionary ...
0
votes
1answer
23 views

Adding int to NSMutableArray initWithCapacity

I'm trying to create a mutable array of two integers @interface ViewController () { NSMutableArray *myArray; } initialized with capacity of two objects - (void)viewDidLoad { [super ...
0
votes
3answers
20 views

Others UIImageView NSMutableArray

I have 5 pictures and i want to add to array code: #import "ViewController.h" UIImageView *pic; NSMutableArray *picArray; @interface ViewController () @property (nonatomic, strong) NSMutableArray ...
0
votes
5answers
71 views

crash while removing objects from NSMutableArray

In my iphone project (ARC enabled) i have a nsmuatble array which contains some 5 managed objects (which are retrieved from core data ) and in some scenario i need to remove all the objects from that ...
1
vote
3answers
68 views

NSMutableArray Display Null Value in Table View

- (void)viewDidLoad { self.detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 480) style:UITableViewStylePlain]; self.detailView.dataSource = self; self.detailView.delegate = ...
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 ...
1
vote
4answers
112 views

Want to display the array values in the table

Table View: -(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{ return 1; } -(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section{ return ...
2
votes
3answers
114 views

How to remove only one instance of an object from an NSMutableArray?

The Apple documentation says that the - (void)removeObject:(id)anObject method removes all occurrences of the given object from an NSMutableArray. Is there a way to remove only one occurrence of the ...
0
votes
0answers
9 views

sending json array with putpath method

I have a json in nsmutablearray like this : NSMutableArray *items; ( { name = JERRY; year = 2013; }, { name = TOM; year = 2012; } ) i want to ...
0
votes
1answer
28 views

Conditional Array… elegant way to do that

I have this array where several elements must be added or not depending on certain conditions. Normally I would do something like that: NSMutableArray *myArray = [[NSMutableArray alloc] init]; ...
0
votes
0answers
51 views

Getting image URL from NSMutableArray

I'm trying to get a pictureURL from an NSMutableArray to an imageview or just a subView. And I'm getting the URL and I can see it in the Xcode output. This is what I have: - ...
0
votes
2answers
47 views

Beginning NSMutableArray - Debug ignored

I am just learning objective-c. Hopefully this is a simple fix for anyone that has worked with NSMutableArrays before. Note: I have watched 3 videos on you tube and read 5 articles before asking ...
0
votes
1answer
10 views

initWithArray:(NSArray *)array copyItems:(BOOL)flag

NSMutableDictionary *dic0 = [[NSMutableDictionary alloc] initWithObjectsAndKeys:@"string0", @"key0", nil]; NSDictionary *dic1 = [[NSDictionary alloc] initWithObjectsAndKeys:@"string1", @"key1", nil]; ...
0
votes
1answer
70 views

creating UIButtons in an array and adding them to the MainViewController

I've been working on an app that I manually created a dozen buttons in the IB. I now want to start again, and do everything in code, as I need the number of buttons to be dynamic. I'd also like to do ...
0
votes
1answer
22 views

Remove (not exact) duplicates of NSDictionaries from array

I have an NSMutableArray of many NSDictionaries that contain keys like "Title". In some cases there are duplicates of dictionaries with the same "Title" but differences in the other keys. How can I ...
1
vote
2answers
37 views

How would I use an NSMutableArray with a NSMutableDictionary

I have an NSMutableDictionary of websites [dictionaryOfSites setObject:@"http://www.example.com" forKey:@"Example.com"]; [dictionaryOfSites setObject:@"http://www.site1.com" forKey:@"Site1"]; ...
0
votes
3answers
92 views

How to store objects of a mutable Array into another mutable array in form of arrays.?

I have an NSMutable array which contains some objects and I want to store these objects into a different Mutable array in the form of different arrays. For ex: I have an array named ...
0
votes
2answers
51 views

NSMutableArray isn't adding my NSString

Im trying to add a NSString to an NSMutableArray and then make the array into NSData and save it with NSUserDefaults. But the array is always nil. Here is my code: - (void)viewDidLoad { [super ...
-2
votes
2answers
69 views

SIGABRT 'Unrecognized selector sent to instance…' [closed]

I'm new to programming for iOS. I've started developing an app using storyboards in xcode. The app contains many different scenes and clicking one button takes you to the next scene with new content. ...
2
votes
2answers
143 views

NSMutableDictionary - EXC BAD ACCESS - simultaneous read/write

I was hoping for some help with my app. I have a set up where multiple threads access a shared NSMutableDictionary owned by a singleton class. The threads access the dictionary in response to ...

1 2 3 4 5 61