如何从 JSON 输出中划分日期?
我正在开发一个应用程序。我使用 json.Json 给出输出,并且该输出存储在一个字典中,例如
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];
NSDictionary *results = [responseString JSONValue];
所以我的问题是如何将数据与结果分开。我想打印唯一的城市名称。所以请告诉我如何从字典中提取数据。
I am developing one application.In that i use the json.Json gives the output and that output is stored in one dictionary like
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
[responseData release];
NSDictionary *results = [responseString JSONValue];
So my problem is how to separate the data from results.I want to print the only city name.so please tell me how to extract the data from dictionary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要查看响应,并使用
objectForKey:
(NSDictionary 中的方法)您可以找到您想要的内容。 (通过键选择数据)。you need to see the response and by using
objectForKey:
(method in NSDictionary) you can find what ever you want. (pick data by their key).检查 NSDictionary 。使用
objectForKey:
检索数据。关键是你的标签值。Check NSDictionary. Use
objectForKey:
to retrive the data. The key will be your tag value.