获取数据集如下所示
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”,
但是如何在iOS上将总数据集转换为float
?
如果我们使用OjectAtIndex:0
它需要第一个位置,但我必须将总响应存储到单个浮点值而不在iphone中使用OjectAtIndex:0
。
答案 0 :(得分:6)
使用
float x = [[Array objectAtIndex:0] floatValue];