on Mac OS X, NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type
188
votes
7answers
138k views
How to convert an NSString into an NSNumber
How can I convert a NSString containing a number of any primitive data type (e.g. int, float, char, unsigned int, etc.)? The problem is, I don't know which number type the string will contain at ...
42
votes
3answers
43k views
how to convert NSNumber to int in Objective-C
Before putting int value into dictionary i have set the int value as [NSNumber numberWithInt:2], now when i try to retrieve back the dictionary content , i want it back in int format.. hw to do this??
...
33
votes
4answers
38k views
What's the difference between NSNumber and NSInteger?
What's the difference between NSNumber and NSInteger? Are there more primitives like these that I should know about/use? Is there one for floats?
28
votes
2answers
27k views
How to add two NSNumber objects?
Now this must be easy, but how can sum two NSNumber? Is like:
[one floatValue] + [two floatValue]
or exist a better way?
21
votes
1answer
16k views
20
votes
3answers
38k views
How to convert NSNumber to NSString
So I have an NSArray "myArray" with NSNumbers and NSStrings. I need them in another UIView so i go like this:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
17
votes
5answers
1k views
Why is NSNumber immutable?
Why is NSNumber immutable? Was there a good reason? Because now I am thinking about creating my own class just for the sake of mutability.
15
votes
8answers
6k views
Determine if NSNumber is NaN
How can I determine if a Cocoa NSNumber represents NaN (not a number)?
This emerges, for example, when I parse a string that has an invalid (non-numeric) contents.
12
votes
6answers
6k views
get type of NSNumber
I want to get the type of NSNumber instance.
I found out on http://www.cocoadev.com/index.pl?NSNumber this:
NSNumber *myNum = [[NSNumber alloc] initWithBool:TRUE];
if ([[myNum className] ...
11
votes
1answer
5k views
how do I set the value of an NSNumber variable (without creating a new object) in objective-c
how do I set the value of an NSNumber variable (without creating a new object) in objective-c?
Background
I'm using Core Data and have a managed object that has an NSNumber (dynamic property)
...
10
votes
3answers
5k views
How to convert string with number to NSDecimalNumber that has a comma not a decimal point?
I have an interface giving me numbers like this 0000000012345,78
So i figured out how to make a number out of them. But I need to calculate with that number and what I actually need is a decimal ...
9
votes
3answers
989 views
@“” string type literals for NSNumber
I love the shorthand handling of string literals in Objective C with the @"string" notation. Is there any way to get similar behavior with NSNumbers? I deal with numbers more and it's so tedious ...
9
votes
2answers
1k views
Objective-C - ARC - NSNumber - Segmentation Fault
I have an objective-C program and I am using ARC (Automatic Reference Counting), it throws a segmentation fault in line 23 (see program below).
Question
1) Why does the segmentation fault occur ?
...
8
votes
1answer
13k views
Storing and retrieving unsigned long long value to/from NSString
I have an unsigned long long value which I want to store into an NSString and retrieve from the string.
Initially I have the value in an NSNumber and I am using this to get the string
NSString ...
8
votes
3answers
1k views
NSNumber vs Int
If integers cannot be written to a dictionary and then a plist, but NSSNumbers can. Is it better to use NSNumbers throughout the app, rather than needing to convert every-time saving or loading a ...
7
votes
5answers
2k views
Is NSNumber overkill for an instance-level counter?
I'm new to Objective-C and Cocoa. I've read that NSInteger and NSNumber are preferred when working with simple integers because they're the "platform-safe" versions of the primitive numeric types ...
7
votes
2answers
5k views
What is the class NSCFNumber in iOS 4.1?
After successfully acquiring a picture from the iPhone camera on iOS 4.1, you can use the key
@"UIImagePickerControllerMediaMetadata"
to return information about the picture. One of the keys in ...
6
votes
5answers
7k views
Objective-C: Find numbers in string
I have a string that contains words as well as a number. How can I extract that number from the string?
NSString *str = @"This is my string. #1234";
I would like to be able to strip out 1234 as an ...
6
votes
3answers
749 views
Why NSNumber points to the same address when value are equals?
Given the following code:
int firstInt, secondInt;
firstInt = 5;
secondInt = 5;
NSNumber *firstNumber = [NSNumber numberWithInt:firstInt];
NSNumber *secondNumber = [NSNumber ...
6
votes
1answer
9k views
create timestamp of now as NSNumber in objective-c
how can I get timestamp as NSNumber? I only need something like this: 1232885280
Thanks
6
votes
4answers
844 views
NSNumber constants in Obj-C
I want to make some NSNumber constants via the same style used for NSStrings in this topic. That is, I'm creating separate constants.h/.m files and importing them into classes that need to access ...
6
votes
1answer
4k views
How to convert NSNumber objects for computational purposes?
I an developing some code in which I use a scanner to get to NSNumbers from a string, say x and y.
Now I want to compute something simple from x and y, say, z = 10.0/(x + y/60.0)/60.0). I can't do ...
6
votes
4answers
2k views
How to tell Core Data's NSNumber property's type
I have an iOS 4 project using Core Data. When I design the Core Data Model, the attributes have Integer 64, Integer 32, Integer 16, Decimal, Double, Float, and Boolean.
But in the generated ...
6
votes
3answers
241 views
How is it possible to pass NSNumber to a method expecting a bool?
[[self.view.window subviews] makeObjectsPerformSelector:@selector(setUserInteractionEnabled:) withObject:[NSNumber numberWithBool:NO]];
I saw this code in another question's answer ( How to disable ...
6
votes
3answers
5k views
NSPredicate, NsNumber numberWithFloat:0.0 (iPhone)
hi i have Core Data database with numerical attributes. they are NSNumbers. Default value is 0.0 but when i try to do some NSPredicated fetch, i get "'NSInvalidArgumentException', reason: 'Invalid ...
6
votes
1answer
7k views
converting double into NSNumber using [NSNumber numberWithDouble:]
there is a coordinate object with three variables latitude(NSNumber) ,longitude(NSNumber) and time(NSDate),for checking the program on my simulator,i gave the folowing code
[coordinate ...
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 ...
5
votes
5answers
10k views
Objective c: Check if integer/int/number
In objective c, how can i check if a string/NSNumber is an integer or int
5
votes
4answers
4k views
iOS Implicit conversion of int to NSNumber is disallowed with ARC
on following code i'm get the errormessage: Implicit conversion of 'int' to 'NSNumber *' is disallowed with ARC.
What i'm making wrong?
<pre>
<code>
NSDictionary *results = ...
5
votes
4answers
11k views
Convert NSNumber (double) value into time
i try to convert a value like "898.171813964844" into 00:17:02 (hh:mm:ss).
How can this be done in objective c?
Thanks for help!
5
votes
4answers
786 views
Loss of precision converting 'float' to NSNumber, back to 'float'
I seem to be encountering a strange issue in Objective-C converting a float to an NSNumber (wrapping it for convenience) and then converting it back to a float.
In a nutshell, a class of mine has a ...
5
votes
1answer
2k views
Converting (u)int64_t to NSNumbers
So essentially my question is this, I am creating an NSMutableDictionary using uint64_t objects as the key.
Is there any better way to create them than doing this?
uint64_t bob=7;
NSNumber ...
5
votes
1answer
8k views
How to read crash log? How to find why the app crashes in system library? What means EXC_CRASH (SIGABRT)?
I got an crash logs from a customer to figure why my app crash on her iPhone.
Here some info from crash log:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed ...
4
votes
2answers
3k views
Two NSNumbers created from the same float aren't equal according to ==
I have a few floats which I convert to NSNumbers and add to an array, then sort in numerical order.
I then take the original floats and convert those to NSNumbers, but if I try to compare them ...
4
votes
4answers
4k views
Comparing NSnumber
I used this code for comparing the NSnumber it canot pass the if condition.
listItems = [appDelegate.productStatus componentsSeparatedByString:@","];
for (int i=0;i<[appDelegate.productArray ...
4
votes
3answers
3k views
Storing ints in a Dictionary
As I understand, in Objective-C you can only put Objects into dictionaries. So if I was to create a dictionary, it would have to have all objects. This means I need to put my ints in as NSNumber, ...
4
votes
1answer
12k views
Trying to NSLog an NSNumber ivar in an instance method
I'm working on a console app that is tracks different songs. I'm working on getting the song class up off the ground first and have run into a snag trying to log an nsnumber which has been allocated ...
4
votes
4answers
2k views
Detecting if NSNumber is between 0 and 255
I am trying to detect whether a NSNumber is between 0 and 255 or not. Whenever I run the app, I receive the alert view that my number is greater than 255, even when it is not. I do not have this ...
4
votes
2answers
686 views
NSNumber >= 13 won't retain. Everything else will
The code I'm currently working on requires adding an NSNumber object to an array. All of the NSNumbers with value 0-12 are added fine, but 13 onward causes a EXC_BAD_ACCESS. I turned on ...
4
votes
3answers
113 views
New NSNumber literals
Since there is new NSNumber literals in Objective-C that you can use, for instance:
NSNumber *n1 = @1000; // [NSNumber numberWithInt:1000]
But it doesn't seem to be possible to use together with ...
4
votes
3answers
261 views
+[NSNumber numberWithUnsignedInteger:] Literal?
I know I can do @3 instead of [NSNumber numberWithInt:3], but what's the literal for [NSNumber numberWithUnsignedInteger:3]?
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 ...
4
votes
1answer
254 views
Why NSNumber literals cannot be used in static declarations
I'm declaring:
static NSString *a = @"a";
and this is a correct declaration in iOS6 (it should be more correct to use the compiler version but I do not know it at the moment). I thought that with ...
4
votes
2answers
626 views
Why isn't the NSNumber class correctly converting my NSString object to a long long?
I'm trying to convert an NSString object to an NSNumber with the same numerical value. When I create the NSString object using this statement...
NSString *songID = [localNotif.userInfo ...
4
votes
3answers
2k views
Generating permutations of NSArray elements
Let's say I have an NSArray of NSNumbers like this: 1, 2, 3
Then the set of all possible permutations would look something like this:
1, 2, 3
1, 3, 2
2, 1, 3
2, 3, 1
3, 1, 2
3, 2, 1
What's a ...
4
votes
1answer
4k views
Comparing NSNumbers in Objective C
I am a beginner at Obj-C and I am a bit confused at this scenario I have the following code:
if (number1 < number2) {
NSLog(@"THE FOLLOWING NUMBER ");
NSLog(@"%@", ...
4
votes
1answer
1k views
Converting an NSString to a locale specific NSNumber
I am using the KeyboardType = UIKeyboardTypeDecimalPad and on some Phones you see an "," on the bottom left instead of an ".". It depends on the language settings of the phone! With the "." version ...
4
votes
1answer
55 views
NSNumber from AppDelegate won't compare correctly
What I've got is a NSNumber which is created in the AppDelegate and holds a numberWithBool:TRUE and a ViewController in which a comparison should be made.
My problem is, that the ViewController ...
4
votes
2answers
135 views
How to overcome the 2,147,483,647 issue NSNumberFormatter
-(NSString *)convertCurrency:(NSString *)textFieldString{
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle: NSNumberFormatterNoStyle];
...
4
votes
1answer
501 views
iOS5 CoreData Entity showing wrong NSNumber value, works on iOS4
I have a CoreData entity with an NSNumber property (an Integer 16 in the model). I have the following code:
NSLog(@"raw changeAmount=%d", changeAmount);
NSNumber *changeNumber = [NSNumber ...

