如何从下面的JSON检索值?

"ItemID": 115,
  "Name": "Test Items for Receive",
  "Description": "Recevive",
  "ItemCode": "AAA-RC-IT1",
  "Quantity":9000,
  "WarehouseLocationID": 560,
  "TransactionDate": "\/Date(-62135596800000+0530)\/",
  "TransactionTime": "PT11H9M0.6074603S",
  "Comment": null,
  "UserName": "virtual",
  "CustomerItem": {
    "ItemID": 0,
    "ItemCode": null,
    "Description": null,
    "CustomerID": 10004
  },


我已经完成了直到UserName,但是它不能与CustomerItem一起使用。

最佳答案

dicionaryName [@“ key”] [@“ key”] [@“ key”],依此类推。如果您可以提供印刷精美的JSON,那将很有帮助。要进行解析,请使用NSJSONSerialization类。

编辑:

获取商品ID和

dictionaryName[@"CustomerItem"][@"ItemID"]


获取商品代码:

dictionaryName[@"CustomerItem"][@"ItemCode"]


等等。

关于ios - 在iOS的NSDictionary中从Dictionary检索值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16443906/

10-12 00:59