1
vote
2answers
59 views

Performance issue when converting many floats to NSNumbers

In my application, I'm receiving a CSV file that contains 30,000 objects and for each object there are always 24 values (a total of 720,000 values). Format is something like this: ...
0
votes
0answers
10 views

NSMutableArray And adding Integers

I am trying to add integers to an NSMutableArray. I have viewed several had code snippets on the subject that show how to use/manipulate the value through NSNumber. Yet, I get odd results. My code ...
0
votes
1answer
14 views

Why are my integers (pulled from an array) not being checked in my if statement properly?

I've got an app playing sound files and I'm using integers to calculate the difference in pitch. The user responds with what they think the answer is and both the actual results and the user's answers ...
0
votes
1answer
34 views

Assigning numerical value to objects in NSMutableArrary

I have an NSMutableArray of playing cards. For brevity, I'll just show the objects in the suit of clubs, but all 52 cards are present in this array. deckOfCards = [[NSMutableArray alloc] ...
1
vote
2answers
70 views

NSNumber wrapping int, returning wrong int, Objective-C

I need to store an int in an array, and I tried this way, converting the int to an NSNumber but integer ends up being 136894816... Can someone please help me with this? NSMutableArray *array ...
0
votes
2answers
76 views

Why is my NSMutableArray, located in a singleton, returning (null)?

I am working in Xcode 4.5.1 in Objective-C. I’m making a hearing test and want to store relevant data to each question in an array. I made a singleton MyManager. I use this to store data. It is ...
0
votes
1answer
64 views

NSMutableArray Values Not Changing

In my project, I have achievements from the main GameClass trying to save data into an NSMutableArray in the control class, ViewController (which is GameClass's delegate), but the array's values don't ...
0
votes
5answers
199 views

Remove 0's From NSMutableArray of NSNumbers

I am trying to scan through an NSMutableArray and remove all 0's. (They are wrapped in NSNumber objects). I was trying to just use a for loop to search through, but I come across the issue that once ...
0
votes
0answers
44 views

Objective C - Sort Numbers From An Array While Maintaining Old Indexes [duplicate]

Possible Duplicate: How to sort NSMutableArray using sortedArrayUsingDescriptors? I'm confused how I would go about sorting this. I don't entirely understand NSDictionary objects but I did ...
0
votes
2answers
433 views

NSMutableArray to NSNumber

I have an array that has: 12, "+", 56, "+", "", "(", 56, "+", 65, ")" now let us say i want to add [NSMutableArray objectAtIndex: 1] + [NSMutableArray ...
0
votes
2answers
283 views

How can I read a NSNumber from an array?

I am trying to put a NSNumber to an array with this: NSNumber *n = [NSNumber numberWithInt:1]; [[array objectAtIndex:0] setValue:n forKey:@"1"]; Then I have an action, which I want it to print the ...
0
votes
2answers
234 views

Changing a boolean in an NSMutableArray

So I'm trying to change all the booleans in an NSMutableArray that I made which I followed from here. i have: @property (nonatomic, retain) NSMutableArray *isDinosaurTapped; and synthesized: ...
1
vote
3answers
420 views

NSNumber=0 in mutable array

If I store an NSNumber that is equal to 0 in an NSMutableArray will that be interpreted as nil and cause issues with the count method?
-4
votes
2answers
286 views

How to print the sum of NSMutableArray

i cannot find the way to print the sum of all the numbers between 0 to 100 in a new line in the console. Here is my code: NSMutableArray *intArray = [[NSMutableArray alloc] initWithCapacity:100]; ...
1
vote
5answers
2k views

Check if NSArray contains some int

I have a NSMutableArray of NSNumbers. Basically I just want to check if any of the NSNumbers in the array = some value. I could iterate through the array, checking one by one, by this is by no means ...
0
votes
2answers
690 views

Retrieve integers by looping through a NSMutableArray

Can someone show me how to retrieve values by looping through a NSMutableArray? My code, which basically adds integer numbers to the array, is below : NSMutableArray *ptr = [[NSMutableArray ...
0
votes
1answer
76 views

NSMutableArray insertion in objective-C

I am using the following code to add NSNumber to a NSMutableArray in header file: NSNumber *timeInSeconds; NSMutableArray *time; in code: int total=6; timeInSeconds=[NSNumber ...
3
votes
4answers
3k views

How do you store “int” values in an NSMutableArray* or NSMutableDictionary*? Chronic problems with JSON data that come in as integers.

How do you store "int" values in an NSMutableArray or NSMutableDictionary? Chronic problems with JSON data that come in as integers. Should I try to store these integers as NSNumber objects or just ...
1
vote
1answer
3k views

NSMutableArray : unrecognized selector sent to instance

I'm trying to store an array int[9][9] with a NSMutableArray of NSMutableArray where I store my 81 integers from the array : - (void)awakeFromNib { // initialization matrix for (int i = 0; ...
0
votes
1answer
174 views

NSNumbers in stored array disappear

So I stored an NSMutableArray of NSNumber objects into the file "times.plist" then I load it and retain it on launch and the NSLog shows the correct value, but later the [times count] equals 0. Why ...
1
vote
0answers
196 views

NSNumbers in archived array dissappear

Okay I've made an array of NSNumber objects that I've stored into an NSMutableArray. When the game loads it's unarchived and retained but all the NSNumber objects are gone. Here's my code: times = ...
4
votes
2answers
7k views

How to add numbers in a mutable array in iphone?

I am new to iphone development.I want a Nsmutable array to hold numbers from 1 to 100.How i can do it.how can i implement in a for loop.Is there any other way to hold numbers in array in iphone.Please ...
0
votes
1answer
606 views

NSArray of UIBarButtonItem Tag (i.e. NSInteger)

Is it true that you can't have an NSMutableArray of NSIntegers? When I try to add the values to the array and then print them out they're huge numbers (when if I print out the tag to NSLog they're ...
5
votes
4answers
27k 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 ...