this is my string i want to place the variable float point in this string:
i want to pass the value in data type of float.
such as..%.1f %.2f i want to pass the 1 and 2 value dynamically in iPhone sdk i use this code :-----
NSString *string=[NSString stringWithFormat:@"%.%if",[[arrayvalue objectAtIndex:0] intValue],[textField2.text floatValue]];
but it print only:-- .if
