on Mac OS X, NSNumber is a subclass of NSValue that offers a value as any C scalar (numeric) type
0
votes
2answers
43 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
21 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
24 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
12 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
11 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
39 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
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
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
22 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 ...
0
votes
1answer
44 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
1answer
53 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
114 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 ...
1
vote
2answers
76 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 ...
-1
votes
2answers
45 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;
...
1
vote
0answers
56 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
77 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
111 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
37 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
1answer
21 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 ...
0
votes
1answer
16 views
NSnumber in to NSstring
Stock *stockObject;
stockObject = [[Stock alloc]initWithIssuingCompany:addCompany stockName:@"one" stockPrice:[NSNumber numberWithFloat:150.3]];
[availableStocks addObject:stockObject];
...
0
votes
1answer
43 views
How do I get Scientific Notation in a text field?
I'm trying to get this text field in my app to display in scientific notation after 8 characters are entered in (sort of like the built-in Calculator App). I've got everything working right, except ...
-1
votes
2answers
108 views
Dictionary problems for Objective C (NSNumber +NumberWithInt)
In writting my Dictionary for a CG thumbnail creation, if I map the value directly to an int It works perfectly:
NSDictionary* d = [NSDictionary dictionaryWithObjectsAndKeys:
...
1
vote
2answers
62 views
CFNumber to int or NSNumber?
I am parsing a JSON string using NSJSONSerialzation, and then casting it into a NSDictionary to work with key value pairs. Some of the values in the JSON string were sent as integers by the server, ...
0
votes
3answers
126 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
3answers
190 views
Implicit conversion of 'int' to 'NSArray*' is disallowed with ARC
I am trying to fill my array with integer. However, there is something strange to me that it is not easy as I Thought. Here is the description of what happens.
Last line of the code gives me ...
-2
votes
2answers
39 views
Memory management for classes like NSNumber, NSSet [duplicate]
These are classes and they declares pointers... to objects right? You send methods to them like objects.
NSNumber * myNumber = [NSNumber numberWithInteger: x];
So why are they not released like so:
...
0
votes
1answer
89 views
NSNumbers changing
I have an array of NSNumbers I am saving into Core Data entities.
I have set their NSNumber property I want to set to Integer64.
On some of the numbers I get strange results and am wondering if it ...
0
votes
3answers
115 views
Incrementing an NSNumber
New to obj-C and Cocoa here
I'm trying to just increment a variable in a method and, being used to C++, I want to just use the terminology of variable++, but that doesn't work on an NSNumber, so I've ...
0
votes
1answer
35 views
NSString and math?
I am newbie on Xcode. So i try to make a single app but i stuck somewhere actually i know where :D i can't write math codes i didnt understand their fundamentals please guys tell me how can i write ...
0
votes
2answers
101 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
3answers
144 views
Compare enum with NSNumber
I am doing some drawing and have a class named Draw2DHelper that defines an enum of constants for the types of drawings I'm making, and a property drawingType that uses the types:
enum {
...
-5
votes
1answer
99 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
2answers
156 views
arc4random in NSNumber giving negative values?
I'm creating a random number and storing it in a NSNumber object like this:
NSNumber *index = [NSNumber numberWithUnsignedInt:arc4random_uniform(2^32-1)];
I also tried:
NSNumber *index = [NSNumber ...
0
votes
2answers
54 views
Convert array of NSStrings to array of formatted NSNumbers
I have an array of strings called valuesArray containing values like this: 2913451.0938
I am trying to format those numbers so that I can display them like this: 2,913,451.09
Using the following ...
0
votes
1answer
36 views
How to I clear out data for an optional attribute?
I have an NSNumber that I want to be optional with no default, not have some magic number that represents 'missing' (eg. 0 or -1). ie. on the database I want its value to be a number or null. It ...
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) ...
0
votes
0answers
50 views
Converting GUID into NSNumber
I want to convert a string with a guid into a NSNumber or any other numeric datatype able to handle a guid.
I only found ways to convert it into double / int etc what doesn't meet my requirements.
0
votes
1answer
44 views
Displaying image specific to NSString value
I'm trying to post a specific image if a specific value is called, and it is my understanding this is not working because NSNumber is not properly being converted to an NSString, but I am unsure if ...
-1
votes
1answer
219 views
What's the largest value an NSNumber can store?
What's the largest value an NSNumber can store?
// ok
NSNumber *value = @(1 << 31);
// gives compiler error, so max NSNumber is 32-bit uint?
NSNumber *value = @(1 << 32);
0
votes
2answers
130 views
NSNumber and float - type casting oddity
In my application I am using an external API which communicates using json. Today I encountered strange (it may be strange just due to my inexperience in iOS) behavior between floats and NSNumbers. ...
-1
votes
1answer
63 views
Trying to do some simple calculations in iOS project?
I want to know how to do some simple equations in my iOS app, if anyone could point me in the right direction that would be wonderful!
I need to know how to convert an NSNumber that represents ...
0
votes
1answer
93 views
How to convert a roman numeral to an NSNumer
I am making a calculator that has a roman numeral mode. I have the operations performed in the model view, and a view controller. My problem is that I need to convert the roman numeral to a NSNumber. ...
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] ...
0
votes
0answers
32 views
How to generate all numeric serial number? [duplicate]
Possible Duplicate:
How to create serial number generator?
I wanna generate a huge amount of serial numbers for my software. The serial number
must be numeric only,
don't use any ...
2
votes
3answers
133 views
Converting an NSString to an NSNumber [duplicate]
Possible Duplicate:
How to convert an NSString into an NSNumber
How can I convert an NSString (@"Five" for example) into an NSNumber (5). I have looked to see if any questions answer this ...
0
votes
1answer
166 views
How to limit NSNumberFormatter currency style with stringByReplacingCharactersInRange
I´m trying to limit the user of entering anything else besides numbers in a textfield, and also using NSNumberFormatter currency style, but it simply doesn´t work, and i think it´s just a little ...
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
0answers
66 views
How to limit NSNumberFormatterCurrencyStyle
I have this in my code:
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSString *currency = [defaults objectForKey:@"currencySymbol"];
NSString *text = [textField.text ...
0
votes
0answers
57 views
Convert a variable length (< 16 bytes) NSData to an NSNumber
I have a web service which is sending down data encoded in a JSON format. Some of this data is RFC 4122 UUIDs, which are 16 bytes. I had originally encoded them as plain decimal numbers. This worked ...








