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 float
s concatenated, try:
NSString *str = [NSString stringWithFormat:@"%f%f", float1, float2];
Nick Forge
2010-04-05 10:51:40
thanks for answer..it works..
greshi gupta
2010-04-09 05:09:29