tags:

views:

156

answers:

2

I am developing an application, and I am not able to concatenate two float values.

+1  A: 

If you want a string with the string representation of two floats concatenated, try:

NSString *str = [NSString stringWithFormat:@"%f%f", float1, float2];
Nick Forge
thanks for answer..it works..
greshi gupta
A: 

just conctanate like this my dear darling 2.5+2.5=5

Vaibhav jindal
Do you even know what concatenation is? And are you... forget it.
BoltClock