0
votes
2answers
31 views

output for a texteild is zero rather then an actual result

This is a strange output, I seem to trigger the alert view each time, and the value for num1 would be 0.50 which is fine. When I click calculate the alert field is triggered, and what's more num1 is ...
0
votes
3answers
87 views

How do I check if a double with decimals is divisible?

I'm trying to test if a number is cleanly divisible (no remainders) by another. If I compare it against an int, it works correctly: NSTimeInterval timeElapsed = // a double goes here // round to 3 ...
1
vote
2answers
98 views

Double precision lost

I m storing some values into the sqlite database. So the data is collected from a textfield as a string and then converted to double and persisted. This is something which I tried NSDecimalNumber ...
1
vote
1answer
131 views

iOS Round Double value to 2 decimal digits and round 3rd decimal digit up

I have I double value like this one 17.125. It should be rounded up to 17.13 If I use the simple method like %.2f it shows me 17.12 I also followed several methods described in other threads here ...
0
votes
2answers
80 views

Precision lost when storing CLLocationDegrees in MySQL

I'm working on a little app that stores Placemarks specified by iOS devices, into a MySQL backend. When a device saves a new Placemark, it is INSERTed into the DB and the newly generated ID is sent ...
0
votes
1answer
61 views

Unexpected result converting double to int

I was trying to cast a double value to int and I got a different value. I have this code: double double100times = 240; int a=[[NSNumber numberWithDouble:double100times] intValue]; and the value I ...
0
votes
1answer
81 views

Issue with CLLocation and double

I have a longitude with -122.406417 and self.actualLongitude is a double member. NSLog(@"original lon: %f", [self.tempLocation coordinate].longitude); NSLog(@"original lat: %f", [self.tempLocation ...
0
votes
2answers
81 views

Convert a segment of an Hex string to a double

I have a device that returns data as a Hex value, for example 00 00 00 56 00 00 01 00. I place this into an NSString. I am only interested in converting the 3rd and 4th segment to a double. ie only 00 ...
-1
votes
3answers
70 views

IOS: Get two digits of a double (€) NOT to display the value, just return it

I´ve read a lot of posts about this but all of them were to limit the number digits to show them(NSString) .In my case I have: I compare two double values(wich are the "same"), each of them got from ...
0
votes
2answers
634 views

How to convert NSTimeInterval to seconds (for backgroundTimeRemaining)

I'm running test on measuring how much time left for background task time remaining. I have read several examples and saw that everyone doing it like: UIApplication *app = [UIApplication ...
0
votes
2answers
74 views

Summing multiple float values into a new float (Double values)

How can I sum multiple doubleValues into a new double? At the moment I have tried like this: double sum = doubleWantToSum1 + doubleWantToSum2 + doubleWantToSum; //etc... And further, I want to use ...
0
votes
2answers
345 views

ios double from string without rounded

Below code is rounding my latitude string. i dont want it to get rounded. double lat must be 41.04546. NSString *latitude= @"41.04546"; double lat= latitude.doubleValue; //it gives 41.0455 ...
0
votes
1answer
267 views

Assigning to 'double*' from incompatible type 'double'

I have a SQLite database with some fields of type double and I have to extract this value and put them in an instance variable, but I get this error Assigning to 'double *' from incompatible type ...
0
votes
3answers
100 views

double to int (or long, long long) conversion sometimes is not good

I am trying to convert quite big double number to int (or long or long long), but have some difficulties. Almost always it converts good, but not sometimes: My code: double price = 12345678.900000; ...
0
votes
1answer
288 views

Double decimal places for coordinates

I am trying to convert a string to a double value to use it as a coordinate in an annotation. I need the double value to have 5 decimal places to be placed on the map. Let's say the string is hello ...
0
votes
2answers
275 views

Objective-C: int can´t be NAN?

It seems that a int in Objective-C can't be NAN. This comparision returns false. int i = NAN; NSLog(@"isNan: %@", (isnan(i)) ? @"YES" : @"NO"); Is there any way to set an int to NAN, or do i have ...
2
votes
1answer
389 views

ios game center submit time and show in leader board

in my app i need to submit the time to the game center and i need to show that in Elapsed Time - To the hundredth of a second format. 00:00:00.00 this is the format i want to show in leader board. ...
1
vote
1answer
312 views

what's difference between the double/float align and long long/int align in iOS

In iOS write code with C/C++, in next code: double value = *((double(*)p); (p points to a enough long memory) When address of p is align to 8 bytes, it is OK; when address of p is not align to 8 ...
0
votes
2answers
642 views

How to convert NSDecimalNumber to double

I have a value being stored as an NSDecimalNumber and when I convert it to a double it's losing precision. For the current piece of data I'm debugging against, the value is 0.2676655. When I send it ...
0
votes
1answer
342 views

Core Data and 'double' property not working. A number is converted into a nan?

I have a bizarre problem with a 'double' property in Core Data. I have isolated the problem in these two lines: newStrategy.order = 444.0; NSLog(@"Order is %f", newStrategy.order); The output of ...
1
vote
1answer
312 views

Objective C Maths

How would I go about calculating a compound interest rate, so far I have: double principal = [[principalLabel text] doubleValue]; NSLog(@"Principal: %lf",principal); double years = [[yearsLabel ...
0
votes
3answers
290 views

Converting aligned array uint8[8] to double

I am facing a bit of a challenge trying to convert an aligned array uint8[8] to a double. It was particularly easy to convert uint8[4] to long with bit-operations, but i understand that the double can ...
0
votes
4answers
187 views

Saving double without losing precision

In the app I'm building now I use some really small numbers(4.12027703723203E-18, 7.685842358296843E-21, 6.882072376426952E-24, 2.7150860398820128E-27, etc). The problem is that when I'm storing them ...
0
votes
4answers
266 views

NSString - Truncate everything after decimal point in a double

I have a double that I need only the value of everything before the decimal point. Currently I am using NSString *level = [NSString stringWithFormat:@"%.1f",doubleLevel]; but when given a value ...
0
votes
0answers
46 views

bytes to friendly NSString format with MB or KB [duplicate]

Possible Duplicate: How to get file size properly and convert it to MB, GB in Cocoa? I have a double that is a number of bytes for each file. I want to create a string from this that is ...
2
votes
2answers
1k views

Objective c int to double calculation [duplicate]

Possible Duplicate: C programming division I'm trying to calculate the period of accelerometer updates using a user entered frequency. this is my code: double interval = 1/Freq; ...
1
vote
3answers
320 views

Encoding/decoding doubles with NSCoding

How can I use -[NSCoder encodeBytes:length:] and -[NSCoder decodeBytesWithReturnedLength:] with a double? I have an object conforming to NSCoding with two double properties, and am currently using ...
1
vote
1answer
325 views

String to double, precision lost

I have 53.025709438664 in string when I do [string_variable doubleValue], I get 53.025709. I use NSLog(@"%f") to print it. How I can get full precision value ?
1
vote
1answer
443 views

Implementing -hash and -isEqual for a geo coordinate class

I have an object which stores a latitude/longitude/altitude, and need reliable and fast -hash and isEqual implementations. I am using double to store all of the primitives. The accepted answer for ...
2
votes
2answers
3k views

objective-c stringvalue from double

I have the following code: double d1 = 12.123456789012345; NSString *test1 = [NSString stringWithFormat:@"%f", d1]; // string is: 12.123457 NSString *test1 = [NSString stringWithFormat:@"%g", d1]; ...
1
vote
2answers
351 views

Convert string percentage to double

I have a string percentage in an array that I'd like to convert to a double. Obviously I have to both remove the percentage and then do something along the lines of [string doubleValue]. What is the ...
2
votes
2answers
229 views

doubleValue does not convert the object to a double value correctly at all times

I have an NSArray in which I would like to store double values. I defined it as follow NSMutableArray *setOfDoubles; I add the elements as follow NSNumber *num; num = [NSNumber ...
0
votes
3answers
3k views

IOS: textfield and double value

I have this situation: I should write in a text field a value in euro. If inside this text field I write "10" I should store in a double value "10.00" or if I write "10,1" I should store in a double ...
0
votes
1answer
492 views

How to draw a double dashed line in Quartz

I am trying to create an app that allows the user to draw a dotted line with their finger on an iPad. I have all of the drawing routines to create single lines. My question is how should I go about ...
0
votes
1answer
2k views

IOS: problem with double value to string

I have this code where I insert a double value in an array of arrays double myDouble = [textField2.text doubleValue]; NSArray *temp = [[NSArray alloc]initWithObjects: textField1.text, [NSNumber ...
0
votes
1answer
233 views

IOS: take a double value without two digits after the decimal point

I have a text field where I write a number; if I write inside this textfield a number without decimal point, I want to take this value and add a decimal point and two number after it if I write (in ...
1
vote
3answers
815 views

Comparing two double variables Objective-C

double a = 10.123420834; double b = 100.123412321; if (a > b) { // do something here } I am trying to compare the two values, the code above doesn't seems to work. Any idea?
0
votes
2answers
2k views

String to Double Trouble Shooting

How do I correctly convert a NSString to a double in xcode 3.2? This is my code(abbreviated), but when I run it, the message says (null). What am I doing wrong? Thanks so much! @synthesize ...
2
votes
4answers
2k views

Incompatible types in initialization?

Why am I getting "incompatible types in initialization" in the following code? NSString *latString = [NSString stringWithFormat:@"%@", @"-44.4349773"]; NSString *lngString = [NSString ...
1
vote
5answers
222 views

Best way to send 10,000 doubles over HTTP

I have a client application (iPhone) that collects 10,000 doubles. I'd like to send this double array over HTTP to an appengine server (java). I'm looking for the best way to do this. Best can be ...