Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

Using core plot for iPhone, drawing date on x axis

I have available an array of dictionary that contains NSDate and NSNumber values. I wanted to plot date on X axis. for plotting I need to supply xRanges to plot with some decimal values.I don't ...
5
votes
5answers
2k views

How do I add NSDecimalNumbers?

OK this may be the dumb question of the day, but supposing I have a class with : NSDecimalNumber *numOne = [NSDecimalNumber numberWithFloat:1.0]; NSDecimalNumber *numTwo = [NSDecimalNumber ...
4
votes
1answer
80 views

Cocoa Decimals and Protocol Buffers, compatibility with .NET

I've been working with Protocol Buffers with an iOS app written using CocoaTouch and have run into what probably amounts to a rookie mistake with decimal numbers. Protocol Buffers does not have a ...
3
votes
1answer
120 views

What locale argument to pass to NSDecimalNumber +decimalNumberWithString:locale: so it always works with NSString's using the dot (.) decimal mark?

I have an NSString which I want to convert into an NSDecimalNumber. The string is received from a server and is always formatted using the en_US locale like XXX.YYY and not like XXX,YYY. I want to ...
2
votes
2answers
53 views

Isn't NSDecimalNumber supposed to be able to do base-10 arithmetic?

NSDecimalNumber *minVal = [NSDecimalNumber decimalNumberWithString:@"0.0"]; NSDecimalNumber *maxVal = [NSDecimalNumber decimalNumberWithString:@"111.1"]; NSDecimalNumber *valRange = [maxVal ...
2
votes
3answers
488 views

Fractional Part of NSDecimalNumber

I'm using NSDecimalNumber to store a value for currency. I'm trying to write a method called "cents" which returns the decimal portion of the number as an NSString with a leading 0 if the number is ...
2
votes
1answer
162 views

how should nsdecimalnumber's be stored in the database?

What is the best way to store nsdecimalnumbers in a database? Numeric types like float, real and double are out, because it is important to preserve the precision for currency usage. The two ...
2
votes
0answers
340 views

NSDecimalNumber round long numbers

I'm trying to get NSDecimalNumber to print out large numbers, 15 or more digits. At 15 digits I see 111,111,111,111,111. Above 15 digits I see 1,111,111,111,111,110 even though the number being ...
2
votes
1answer
544 views

Can I use an NSDecimalNumber anywhere that an NSNumber is expected?

NSDecimalNumber is a subclass of NSNumber, and from what I can tell, it implements all of the NSNumber methods as expected for an NSNumber instance. Given that, is it ok to give NSDecimalNumbers to ...
2
votes
3answers
1k views

Calculating sum for decimal values via Core Data not working properly?

first time I post to this round, so please bear with me if I don't follow all the rules properly. I am writing an app for the iPhone (OS 3.1) and am trying to write some code which lets me add ...
1
vote
0answers
72 views

NSPredicate for calculated field with NSDecimalNumber

I want to filter a calculated field (binary expression in terms of Apple documentation) in Core Data with a NSDecimalNumber value. The entity has two attributes: field1 and field2, both of type ...
1
vote
3answers
85 views

NSDecimalFormatter and currency symbols : $US instead of $

I must be missing something obvious but since I lost way too much time on this, I'll let the experts have a look. I'm just willing to get a string formatted exactly how I want it but the currency ...
1
vote
1answer
69 views

NSDecimalNumberPlaceHolder Leak

I have an iPad app that I am testing in Instruments before beta testing. I have gotten rid of all memory leaks except one, and I can't find any information on it. I am baffled as to what to do, since ...
1
vote
1answer
126 views

NSNumberFormatter Won't Accept Zeros After a Decimal Point

Similar questions have been asked but I find that the offered solutions don't work with the latest iOS SDK or are not exactly applicable in this particular case. I call a method using an ...
1
vote
2answers
122 views

NSDecimalNumber: summing two NaNs results in overflow?

For some odd reason, I receive an NSDecimalNumberOverflowException from the following: NSDecimalNumber *a = [NSDecimalNumber notANumber]; NSDecimalNumber *b = [NSDecimalNumber notANumber]; ...
1
vote
1answer
158 views

Objective-C: Calculating hourly rate with NSDate and NSDecimalNumber

I have two instances of NSDate (a start time and an end time) and also one NSDecimalNumber (which represents the amount that was earned over the period of time between the two dates). What I'm trying ...
1
vote
2answers
645 views

NSDecimalNumber question for core data and iPhone

I'm fairly new to core data and iphone programming. Maybe this is an obvious answer, so if anyone can point me to a tutorial or other resource, it's greatly appreciated! I have a core data entity ...
1
vote
2answers
265 views

Show NSDecimalNumber as currency in IB

I have a core data entity with a property amount, which is a NSDecimalNumber. For this property the entity's class has a method defined with an NSDecimalNumber as argument. In Interface Builder I ...
1
vote
1answer
231 views

iPad Decimal Picker Control

I'm just wondering how I go about making a picker/spinner control for a decimal number input. I have seen it on other iPhone apps where they click a button and a number picker comes up and allows them ...
1
vote
2answers
186 views

Turn a NSDecimalNumber negative

I am looking for a way to turn a NSDecimalNumber negative by multiplying by -1. /* decNumber is the one I would like to turn negative */ NSDecimalNumber *decNumber = [values objectAtIndex:billIndex]; ...
1
vote
1answer
336 views

Examples of doing decimal math in iPhone

I'm pulling decimal values from a sql table as a text field which i then convert to an NSDecimalNumber (this is simply because i didnt know read/write decimal values to sqllite). Anyway, now i've hit ...
1
vote
1answer
462 views

ceilf and floorf equivalent methods for NSDecimalNumber

Are there equivalent methods for ceilf and floorf for the NSDecimalNumber type? I couldn't seem to find any.
1
vote
2answers
1k views

NSDecimalNumber multiplication strangeness

ExclusivePrice, quantity are both NSDecimalNumbers. NSDecimalNumber *price = [exclusivePrice decimalNumberByMultiplyingBy:quantity]; NSLog(@"%@ * %@ = %@", exclusivePrice, quantity, price); The ...
1
vote
2answers
2k views

How to display currency without rounding as string in Xcode?

I have trouble when I have currency value 999999999999999999.99 From that value, I want to display it as String. The problem is that value always rounded to 1000000000000000000.00 I'm not expect ...
1
vote
4answers
1k views

Creating autorelease objects in iPhone Development

I have a requirement to create some NSDecimalNumber objects objects as part of my application (as I require the precision of calculation they offer) but I note that in calculations they return ...
1
vote
2answers
3k views

iPhone Currency input using NSDecimal instead of float

iPhone/Objective-C/Cocoa newbie here. Based on a number of posts on stackoverflow, I have cobbled together an IBAction that I'm using in a basic iPhone calculator app that I'm building. The IBAction ...
1
vote
2answers
1k views

NSNumberFormatter and rounding percentage value

here is my code snip, i dont know how to round double numbers. double m = [tmpProduct.msrp doubleValue] ; double d = [tmpProduct.discountPrice doubleValue]; double p = (d * 100 ) / m; here ...
1
vote
2answers
1k views

NSDecimalNumber zeros following decimal point (iPhone SDK)

I have the following code (...) numberStyle = [NSDecimalNumberHandler decimalNumberHandlerWithRoundingMode:NSRoundPlain scale:2 raiseOnExactness:NO ...
1
vote
1answer
955 views

Trouble with NSDecimalNumber's decimalNumberByDividingBy:withBehavior:

I always seem to run into trouble with NSDecimalNumber! Today, I get this error: "Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSCFNumber ...
0
votes
1answer
44 views

Create a running sum in a UITableView

I have a UITableView populated (previously saved via a button in navbar), with transactions. Each row has five UILabel: date, description, person, value (deposits and withdraws) balance. The table ...
0
votes
2answers
38 views

Different ways of comparing NSDecimalNumber

For example, with primitive, I'll do this if ( (x >= 6000) && (x <= 20000) ) // do something here and with NSDecimalNumber, this is what I have if ( (([x compare:[NSNumber ...
0
votes
3answers
26 views

Prevent scientific notation with NSDecimalNumber output as NSString

I have a problem similar to the one in this question: How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber? I need to have a number in string format accurately ...
0
votes
1answer
31 views

SBJSONParser on large integer

I'm using json-framework to parse JSON data in an iPhone project. But there's a large number in the json data, such as 10432159274, it will make NSNumber overflow. In the SBJsonParser.h, the doc says ...
0
votes
1answer
86 views

Getting NSDecimalNumberOverflowException Error

I'm getting an error at line: if (! [self.event.managedObjectContext save:&error]). It only happens when the user does not enter another number into the textField, so it is 0. - ...
0
votes
2answers
118 views

Need Help With NSDecimalNumber

I'm trying to take an NSDecimalNumber I have, and multiply it by 1.1. I have this but it doesn't work: NSDecimalNumber *multipy = [NSDecimalNumber decimalNumberWithMantissa:1.1 exponent:0 ...
0
votes
2answers
61 views

Simplify NSDecimalNumber initialisation

I have the following construct, which I would like to simplify. I had to use a NSString (?) in order to get rid of the NSNumber vs. NSDecimalNumber compiler Warning. NSDecimalNumber ...
0
votes
1answer
44 views

Can NSString be treated as a NSCFDecimal?

I wanted to compare two strings using - (BOOL)isEqualToString:(NSString *)aString These strings are objects from a dictionary using -(id)objectForKey:(id)aKey containing numerical characters. When I ...
0
votes
1answer
127 views

Using NSDecimalNumber with constants in Objective-C

I have a couple of values that are constants, all of them being percentage such as static const float minPercentage = 0.80 //80% static const float maxPercentage = 1.25 //125% static const float ...
0
votes
0answers
107 views

why do i get “NSDecimalNumberOverflowException”?

Hi there and thanks in advance for any response. I am using NSDecimal number to do a lot of arithmetic with fairly large numbers (results of my arithmetic usually dont exceed 1 million). Sometime my ...
0
votes
1answer
173 views

getting the sum of all instances of Entity B from a given instance of Entity A

I have a to-many relationship between Entity A and Entity B (iOS Core Data app). I need to get the sum of the NSDecimalNumber attribute of all instances of Entity B from a given instance of Entity A. ...
0
votes
3answers
460 views

unrecognized selector sent to instance [closed]

Possible Duplicate: Unrecognized selector sent to instance Can anyone tell me what is going on in this error code? Man apple is cryptic. I have just made a call via ObjectiveResource to ...
0
votes
1answer
2k views

NSDecimal vs Float (iOS)

I've come across some blogs and forum posts where people say one should use NSDecimalNumber instead of floats when dealing with currency. I find I have to convert from NSDecimalNumber to ...
0
votes
1answer
143 views

Over-releasing an NSDecimalNumber

My app is telling me that I'm over-releasing the NSDecimalNumber tempDouble below: NSNumberFormatter *currencyFormatter = [[NSNumberFormatter alloc] init]; [currencyFormatter ...
0
votes
3answers
452 views

Bug with iPhone Currency for Euro format with NSDecimalNumber using NSLocale?

My app uses monetary values, and I would like to represent these values in the currency and formats that the user has set on their iPhone however, when testing, I seem to be having troubles with the ...
0
votes
1answer
57 views

NSDictionary losing decimal place at retrieval

I have a json string something like this "{"price":1.0}", using the json-framework I am converting this json string to NSDictionary. Now I am retrieving the value from NSDictionary as below ...
0
votes
1answer
100 views

objective c losing NSDecimalNumber value when accessed from another method

I am parsing Json Data into an NSDecimalNumber as follows product.Price = [NSDecimalNumber decimalNumberWithDecimal:[[jProduct objectForKey:@"Price"] decimalValue]]; This is in a loop with each ...
0
votes
3answers
219 views

Raise an NSDecimalNumber to a negative power

I need an equivalent to C's pow() function that will work with NSDecimalNumbers. With pow you can use negative numbers e.g. pow(1514,-1234), with NSDecimal's decimalNumberByRaisingToPower: method, you ...
0
votes
1answer
413 views

NSDecimalNumber subtraction

I need to subtract 0.5 from number a and set the answer to number b. My code looks like it would work but I'm not sure what I'm doing wrong. The error I get Is on the subtraction line, the error says ...
0
votes
5answers
2k views

Objective-C - How To Remove Characters From a String?

I have a UILable that has a formatted String (formatted for currency), so there is a dollar sign, $21.34. In the core data entity the attribute is of a type double, I am using an NSDecimalNumber to ...
0
votes
1answer
349 views

I'm having a problem with decimalNumberBySubtracting and decimalNumberByDividingBy

Simply put, decimalNumberBySubtracting and decimalNumberByDividingBy are not working ... at all. No errors, just messed up results. I really need to fix this but Im not getting any errors and I cant ...

1 2