如何从 JSON 输出中划分日期?

发布于 2024-11-18 22:38:05 字数 316 浏览 1 评论 0原文

我正在开发一个应用程序。我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅沫记忆 2024-11-25 22:38:05

您需要查看响应,并使用 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).

随波逐流 2024-11-25 22:38:05

检查 NSDictionary 。使用objectForKey: 检索数据。关键是你的标签值。

Check NSDictionary. Use objectForKey: to retrive the data. The key will be your tag value.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文