使用 JSON 解析来自 Web 服务的浮点数
解析 NSString 我使用了这个:
NSString *adress=[stations objectForKey:@"adress_station"];
浮点数怎么样,我应该如何调用它,我尝试这样做:
float distance=[stations objectForKey:@"distance"];
但我遇到了一个错误:
incompatible type in initialization
我不想将它放入 NSString 中,我需要它作为浮点数,因为我在其他操作中需要它:)
to parse a NSString i have used this :
NSString *adress=[stations objectForKey:@"adress_station"];
what about a float, how should i call it, i try to do that :
float distance=[stations objectForKey:@"distance"];
but i have got an error :
incompatible type in initialization
i don't want to put it in NSString, i need it as float because i need it in other operations :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
objectForKey 返回一个对象(在本例中我假设是一个 NSString)。
在 NSString 上调用
-floatValue
将获取浮点型数据。objectForKey returns an object (in this case I assume an NSString).
Calling
-floatValue
on an NSString will get the data as a float.