Tagged Questions

on Mac OS X, NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type

learn more… | top users | synonyms

71
votes
6answers
60k views

How to convert an NSString into an NSNumber

How can I convert an 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 contains at ...
23
votes
3answers
26k 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?
11
votes
6answers
3k 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.
11
votes
2answers
10k 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?
8
votes
2answers
299 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 ? ...
7
votes
1answer
606 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) ...
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 ...
6
votes
3answers
88 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
263 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 ...
6
votes
4answers
318 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.
6
votes
3answers
13k 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?? ...
5
votes
4answers
133 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
2answers
2k 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 ...
4
votes
4answers
504 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 ...
4
votes
1answer
185 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 ...
4
votes
2answers
333 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
18k 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 ...
3
votes
1answer
120 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 ...
3
votes
1answer
154 views

Better way to convert NSArray of NSNumbers to NSArray of NSStrings

I have an NSArray consisting of NSNumbers and I want to convert this to an NSArray of NSStrings, by getting the stringValue of each NSNumber in the first array. The method that comes to my mind is ...
3
votes
2answers
164 views

Why [NSDecimalNumber longLongValue] return min value

NSDecimalNumber *dn = [[[NSDecimalNumber alloc] initWithString:@"9223372036854775806"] autorelease]; long long llVal = [dn longLongValue]; why llVal is -9223372036854775808 ? NSDecimalNumber ...
3
votes
1answer
496 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 ...
3
votes
3answers
250 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 ...
3
votes
2answers
333 views

How can I get an NSNumber without performing alloc on it, so it will respond to initWithInt?

My understanding is that a 'convenience' method such as [nsnumber initWithInt] should create a copy of the indicated class, initialized to the desired value. minutesLeft=[NSNumber ...
3
votes
5answers
2k 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] ...
3
votes
2answers
7k views

How to convert NSNumber to NSInteger

How to convert an NSNumber to NSInteger ?
3
votes
2answers
244 views

Wondering how to deal with nsnumber objects in an arithmatic operation

I saw this thread but wanted to confirm: http://stackoverflow.com/questions/1801197/how-to-convert-nsnumber-objects-for-computational-purposes So basically anytime you want to deal with these ...
3
votes
3answers
2k views

NSNumber of seconds to Hours, minutes, seconds

I am having a terrible time trying to do something that should be easy. I have a NSNumber value of 32025.89 seconds. I need to represent that in Hours, Minutes, Seconds. Is there a method that spits ...
3
votes
2answers
2k views

Can someone post a full example usage of NSNumber?

I'm not even sure, for example, if I can use it like a normal variable. There doesn't appear to be a mutable version. And does mutable mean it's value can be changed?
3
votes
3answers
2k views

Storing optional NSNumber in Core Data

In my core data model, I have an entity with an optional NSNumber attribute. How do I test to see if the value in that attribute is valid or not? When I test for nil... doesn't work. [self ...
3
votes
1answer
6k 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 ...
2
votes
1answer
82 views

Convert primitive Datatypes to NSNumber

We are trying to write a Wrapper from NSObject (using primitive datatypes) to a NSManagedObject (using NSNumber). So we have to automatically convert the primitive type to a NSNumber. We know the ...
2
votes
2answers
39 views

Can I achieve multiple dispatch between int and NSNumber?

I'm writing some library code, and users of the library sometimes have different opinions about which methods should use int and when to use NSNumber. I would like some way to set up a method so that ...
2
votes
5answers
115 views

NSNumber and float?

I am trying to set an NSNumber as a float value that has been loaded using NSUserDefaults but i'm getting an error. I can't understand why...? Here's my code: [settingsData.sensitivitySettingValue ...
2
votes
2answers
89 views

NSNumber decimal to C primitive value?

I want to convert a decimal NSNumber to an int or other form which I can do math with. Here's the annotated code for my project: NSNumber *Left = [left valueForOutputKey:@"Y"]; This line gets a ...
2
votes
1answer
37 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
1answer
128 views

NSNumber comparison with < (less) operator instead of compare

some days ago I've read a post written by another user regarding comparisons between NSNumber objects using the < (less) operator.. He was getting wrong results and people told him that it was ...
2
votes
4answers
97 views

How to combine the advantages of `int` and `NSInteger`

A seemingly simple question: Can I have some sort of Number object, which can be nil but which I can assign like a primitive int: like this: NSNumber *n = nil; n = 3; if(n == nil){ // some ...
2
votes
4answers
179 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 ...
2
votes
1answer
159 views

argument isKindOfClass: [NSNumber class] - sane way to check this?

So I was playing with something where the class type of the arg is unknown until runtime. like this: - (NSNumber *)doWhatever:(id)arg { // this ALWAYS FAILS if ([arg isKindOfClass:[NSNumber ...
2
votes
3answers
53 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. ...
2
votes
2answers
157 views

Trying to save long long into NSNumber from String

I am trying to save a long long number (received as a string) such as '80182916772147201' into an NSNumber. NSNumberFormatter * f = [[NSNumberFormatter alloc] init]; [f ...
2
votes
1answer
285 views

NSNumber not being retained?

I have a variable lastPostsGrabbedCounter, an NSNumber, that is defined below. .h NSNumber *lastPostsGrabbedCounter; @property (nonatomic, retain) NSNumber *lastPostsGrabbedCounter; .m @synthesize ...
2
votes
1answer
624 views

Objective-C - Program received signal: “EXC_BAD_ACCESS”. with (NSNumber floatValue)

I am getting a Program received signal: “EXC_BAD_ACCESS”. when using the following code. searchResultFileSize is declared as an NSNumber in my interface. I wasn't sure what property to set it as. ...
2
votes
1answer
3k 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 ...
2
votes
2answers
1k views

How to convert NSNumber to NSDecimalNumber

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 ...
2
votes
5answers
314 views

53 * .01 = .531250

I'm converting a string date/time to a numerical time value. In my case I'm only using it to determine if something is newer/older than something else, so this little decimal problem is not a real ...
2
votes
1answer
202 views

Adding data to an NSDictionary… SRSLY? Isn't there a quicker way?

I'm from a Flash ActionScript background. Where I'm from, I can set a dictionary-like object like this: var data:Object = {startPoint:5, endPoint:12}; So coming to Objective-C, I was surprised to ...
2
votes
1answer
2k 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
2
votes
1answer
877 views

Should I use NSNumber or an int in an iPhone/iPad class?

I'm creating an object that will have two integers (or NSNumbers) and an NSDate as ivars. This object will be in an NSMutableArray. To my knowledge, we cannot put primative integers in an ...
2
votes
2answers
3k 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 ...

1 2 3 4 5