Tagged Questions
1
vote
2answers
60 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
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
0answers
18 views
containsobject nsnumber not being found
I have two arrays (one stores ints and the other points).
CCArray* getSSEdgeCode;
CCArray* getSSTileCode;
Creating the arrays:
-(void) storeTilePointData:(CGPoint) edgePt tileCode:(int) ...
1
vote
3answers
493 views
Sorting Numbers Objective-C
I am a 13 year old who has been doing web-design for about a year and have built a few websites (more info here)
I am new to objective-c, though. I want to make a demo app where i can enter 4 ...
0
votes
2answers
171 views
NSArray or NSMutableArray for NSNumber Listing
Okay, so I want to do something like this:
int array[] = {1, 2, 3, 4, 5};
How would I go about that if I want to use NSArray and NSNumbers instead of ints?
**Note:
I do not want something like
...
1
vote
3answers
1k views
Adding Integer To NSMutableArray
I couldn't find this anywhere, so I am asking just asking to make sure. And yes, I know its basic, but I figure I'd rather get that right before I make the mistake a million times:
If I do the ...
0
votes
1answer
69 views
Pick random NSNumber from an Array? [duplicate]
Possible Duplicate:
Picking a Random Object in an NSArray
How do I pick a random NSNumber from an array containing 15 different prices (2.25, 5.99 etc)?
I want to do some calculations with ...
2
votes
1answer
137 views
How do you pass an array though a function in Objective-C?
I need some help. I am new to Objective-C and trying to learn how to program iPhone Applications in Xcode 3.0.
I am trying to pass my array through a function and am confused. Thank you for your help.
...
2
votes
3answers
112 views
NSNumbers taking up less memory than ints?
I'm still very much a noob, having a lot of fun learning the basics of Objective-C, using XCode to put together some simple programs for OS-X.
I have a program which ranks a five card poker hand.
...
0
votes
1answer
145 views
Getting error when added NSNumber to an array
When my program gets to the line:
[userNumSequence addObject:[NSNumber numberWithInteger: sequenceNumber]];
it gets the error:
Program received signal: “EXC_BAD_ACCESS”.
All I'm wanting to do is to ...
0
votes
2answers
2k views
Retrieve NSNumber From Array
I am relatively new to Objective C and need some array help.
I have a plist which contains a Dictionary and an NSNumber Array, with more arrays to
be added later on.
NSMutableDictionary *mainArray = ...
