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

1
vote
1answer
54 views

Unacceptable type of value for attribute with int value

I work with core data and I try to assign an int value (id) from WS to core data attribute (Integer 32) . The attribute is an NSNumber and when I code it : NSNumber *v = [responseMembers ...
1
vote
4answers
147 views

NSNumber causing a SIGABRT

I have a strange problem (strange if you ask me). Im using a NSNumber object to store a number (doh). When I try to "modify" it it crashes my application. The code I'm using looks like this: if ...
1
vote
2answers
48 views

NSNumber, what to be aware of when using and storing different primitive types

An NSNumber can store different primitive types, like short, int, long, long long, float, double But does the size change, when i do @(long long) in comparison to @(int) By modeling the ...
-1
votes
2answers
44 views

NSNumber from CGFloat

Is there a safe way to "convert" a CGFloat to a NSNumber ? NSNumber has the numberWithFloat: and numberWithDouble: methods but CGFloat being defined as float or double depending on the platform, it ...
1
vote
3answers
33 views

Add up all values from an NSArray and find the average [duplicate]

I'm using the following to get an output of: 2013-06-06 11:44:27.325 [2570:907] Rating: 0 2013-06-06 11:44:27.326 [2570:907] Rating: 2 2013-06-06 11:44:27.327 [2570:907] Rating: 3 ...
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 ...
1
vote
1answer
202 views

Iphone sdk - Weird behavior when comparing NSNumber

I have a project which does several network operations. For easy control I have given each operation a unique Id, defined as a NSNumber because i have to perform operations with objects and Array and ...
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 ...
0
votes
1answer
918 views

Objective-C - NSNumber comparision iOS SDK 4.2 vs 5?

I found a bug in my app: The logic was that I was comparing two NSNumbers using "==", and I believe it used to work. But it no longer passes on iOS sdk 5, so I need to use isEqualToNumber instead. ...
0
votes
1answer
1k views

using NSNumberFormatter with NSDecimalNumberHandler in the iphone sdk

as a quick test of formatting very large, precise numbers i'm doing: (number is a synthesized NSDecimalNumber...) number = [[NSDecimalNumber alloc] initWithDecimal:[[NSDecimalNumber ...
196
votes
8answers
143k 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 ...
0
votes
1answer
65 views

Set Precision for NSNumber value

I am having an issue with an NSNumber variable "num" that is currently containing 0.522000003606 I looked up several other issues on stackoverflow with others having the same issue but nothing. My ...
0
votes
1answer
36 views

Warning: Converting to Boxing Syntax requires casting 'long' to 'int'

Any idea how to get this warning to go away. The code runs fine, I just don't like warnings in my project. I have never come across this warning before so I am making a mountain out of a mole hill I ...
1
vote
0answers
82 views

why is NSNumber numberWithDouble adding 0's to a number in objective-c [duplicate]

I'm using xcode. I have something like this in my code NSNumber *a=[NSNumber numberWithDouble:[@"0.07" doubleValue]]; //after that line a value is 0.07000000000000001 NSNumber *a=[NSNumber ...
0
votes
1answer
28 views

Creating Multiple Buttons Based on NSNumber Value

I'm trying to create a number of buttons that will align vertically, but my code does not seem to be working. When i try the simulator, nothing appears. This is my code: NSInteger i; for (i = ...
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 ...
0
votes
0answers
37 views

XCode plist editor inserts comma in values over 1000 creating problems

I enter a value "43200" (12 hours in seconds) into a NSNumber field and save. XCode somehow changes the value to "43,200" - inserting a comma. However if I look at the xml file the value is saved as ...
0
votes
1answer
76 views

iOS can I increment an NSNumber, or do I need to create a new one?

Is there a way to increment a NSNumber instance in place without having to create a new number ? Here's what I'm doing currently: int photoIndex = hour + minute/30; NSNumber* currentCount = ...
0
votes
2answers
245 views

NSValue to NSNumber conversion crash

I want to convert NSValue to NSNumber. What is wrong with this code? char value[4]; [myNSValue getValue:(void*)value]; NSNumber *number = [[NSNumber alloc] initWithBytes:(void*)value ...
0
votes
2answers
48 views

Unable to change NSNumber to Double and do some calculations with it

my problem is that i have an Array that holds some double values NSArray *level4results = [context executeFetchRequest:request error:&error]; then i sum up all the values in that array ...
0
votes
1answer
31 views

how can i convert NSNumber to CLLocationDistance?

I have to convert an NSNumber to CLLocationDistance for comparing them. So are there any formatter to do that? I searched at internet but i could not find.
0
votes
1answer
67 views

SortedArrayUsingComparator not working accurately

I am trying to sort my array, but it seems to not work reliably. Here is the code for sorting. Basically the Request priorityID has values from 1-5 For example: sortedArray = ...
0
votes
0answers
21 views

working with plist and object NSnumber property turns up as (null), why?

i have a pList on my app that saves an array of dictionaries. every dictionary represents an object of class (class password) that has 5 properties: NSNumber*passwordId; NSString*passwordUname; ...
0
votes
0answers
19 views

NSSet isSubSetofSet comparison

I am comparing an NSSet to another Set using the "isSubSetOfSet" function. I am checking to see if all of the members of a set are even. When I look at my output, some the output contains all even ...
0
votes
1answer
45 views

Json Zero considered as NSNumber and greater as NSstring

When the value of a JSON entry is zero Xcode considers it an NSNumber, and when it is greater as an NSString. The problem is when using a if to check the value, the app crashes in some cases. I would ...
1
vote
2answers
62 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: ...
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] ...
0
votes
0answers
12 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
43 views

CLLocationCoordinate2D converting return null

i m trying to convert longituude and latitude to NSNumbers to save them in core data. following my code: getting coordinate CLLocationCoordinate2D coordinate = [[mapView.annotations ...
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, ...
0
votes
1answer
62 views

Double value not considering 00 after decimal point iOS 6

In my application user enters price in text field. So I take the price from textfield like below NSNumber *price = [NSNumber numberWithDouble:[[self ...
0
votes
3answers
139 views

How to do math on NSNumber

I am trying to take a reading off a sensor and display it as a percentage. [some value] will always be between 0 and 1. Here is my code: NSNumber *reading = [some value]; reading = [reading ...
0
votes
1answer
1k views

[NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)];

i m using sqlite i am geting a return value frmo DB in this manner returnCount = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,0)]; but the returend value is an integer ...
11
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 ...
0
votes
2answers
110 views

Application crashes using core data

I am using core data for saving data. First time my application saves data without any issue but 2nd time application crashes on [self.managedObjectContext save:nil]; line with crash log *** ...
0
votes
1answer
71 views

NSNumber stringValue different from NSNumber value

I'm having problems with converting NSNumber to string and string to NSNumber. Here's a sample problem: NSString *stringValue = @"9.2"; NSNumberFormatter *formatter = [[NSNumberFormatter alloc] ...
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 ...
2
votes
3answers
132 views

Objective-C NSNumber numberWithLongLong creates integer

When I attempt to create an NSNumber using the numberWithLongLong with a number greater than -2 and less than 13 it returns a number that is casted as an (int). I see this if I look at the Xcode ...
18
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.
1
vote
2answers
91 views

NSPredicate of multidimensional NSArray

Given is an NSArray with objects, each of which has an NSArray with floats, stored as NSNumbers. I am trying to create an NSPredicate to filter my main array based on the float values. So, for ...
0
votes
3answers
576 views

Can not multiply or divide large or small floating numbers?

Sorry for not posting any code. This question relates to division and multiplication by floating point numbers when working in xcode ios. I have variable which i need to be divided by ...
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
-1
votes
2answers
49 views

Number modifying during conversion from NSString to NSNumber [closed]

NSNumberFormatter * f = [[NSNumberFormatter alloc] init]; [f setNumberStyle:NSNumberFormatterDecimalStyle]; NSNumber * myNumber = [f numberFromString:txt2.text]; ctbook.number=myNumber; ...
-5
votes
1answer
136 views

-[__NSCFString stringValue]: unrecognized selector sent to instance while converting NSNumber to NSString [closed]

I am trying to convert NSNumber to NSString : NSNumber *number = [NSNumber numWithInt:1]; NSString *string = [number stringValue]; Its getting crashed an showing this error -[__NSCFString ...
1
vote
0answers
62 views

Why isnt BOOLEAN attribute of a Core Data entity__NSCFNumber and not __NSCFBoolean?

In Core Data Entities, we have to wrap primitive numbers (char,int,float,double and BOOL) to there Class cluster NSNumber. Although the core data user interface let's us specify a type where I ...
1
vote
4answers
89 views

NSString to NSNumber ignores initial zeros

I am converting NSString to NSNumber. But the problem is that if NSString starts with zeros then converting it to NSNumber ignores the initial zeros. I know initial zeros doesn't mean anything but I ...
0
votes
4answers
131 views

NSString To NSNumber

So this problem has been perplexing me for way too long. I have a UIAlertView with a textField in it, and I need the value of the textField as an NSNumber. But everything I try gives me random ...
-4
votes
1answer
38 views

Objective-C NSNumber Value From Entity Property [closed]

Im successfully pulling a number from a entity. But if I init that number with an NSNnumber, it seems a random number is generated... //This code works, and I can write the number to the NSLOG ok. ...
1
vote
3answers
10k views

Converting NSNumber to NSString is not realy a string

I have got a problem with converting an NSNumber value to an NSString MyPowerOnOrNot is an NSNumber witch can only return a 1 or 0 and myString is an NSString.. myString = [NSString ...
1
vote
1answer
25 views

How to trim off symbols from NSNumber?

Im making an iOS app to do with currency. My app receives the value of maybe: $4. This value the app receives is put into an NSNumber. The trouble is the value actualy has a $ in it. How do I trim out ...

1 2 3 4 5 9