Hi everyone, how to add shared data to NSMutableString, that I get data from
Webservices *details=[[Webservices alloc] init];
[details getMobileNumberDetails:phnotextfield.text];
NSLog(@"longitudes Arrays from %@",details.resultData);
"- 91.57696007", "10.343234", "74.982343", "76.464844", "76.464844", "2.256",
so help me save data in NSMutableString using for loop in iphone.
thanq to replay my other problem - I have to store all data from nsmutablestring in float values. according to your ans, when converting nsmutablestring values to float, as if
float datalist = [myStr floatValue]; it shows 0,000 values. how to save the final result in float values in iphone
source
share