如何在Swift中将字典数组从一个tableview传递到另一个自定义tableview

时间:2016-07-16 11:38:00

标签: iphone json swift uitableview

我在tableview中获取Json菜单数据。现在我需要在自定义单元格创建时将"Subcategory"数据传递给另一个tableview。我在didSelectRowAtIndexPath上的自定义单元格中进行了另一个tableview。

我的json数据格式

    [{ 
      "id" :"233",
      "name" :"dgghd",
      "subcategory:[{ 
                     "id" :"233",
                      "name" :"dgghd",
                      "items:[{ 
                                "id" :"233",
                                "name" :"dgghd",

                              },... more items]

                    },....more  subcategories
                   ]
       },....more main menus
      ]                  

获取菜单数据

 Alamofire.request(.GET, myUrl)
        .validate()
        .responseJSON { response in
            switch response.result
            {
            case .Success:
                if let value = response.result.value {
                    let json = JSON(value)
          //                        print(json)

                //main menu section

                    for (_, content) in json {

                        let menu = Menu(id: Int(content["id"].stringValue),
                                        name: content["name"].string,
                                        image: content["image"].string,
                                        coupon: content["coupon"].int,
                                        icon: content["icon"].string,
                                        order: Int(content["order"].stringValue),
                                        aname: content["name"].string,
                                        options: Int(content["options"].stringValue),
                                    subcategory:content["subcategory"].arrayObject)

                        self.menus.append(menu)
                    }

                  for (_, sub) in json {

                        for (_, subcategory) in sub["subcategory"] {

                            let subcategory = SubCategory(
                                id: Int(subcategory ["id"].stringValue),
                                name: subcategory ["name"].string,
                                description: subcategory ["description"].string,
                                image: subcategory ["image"].string,
                                coupon: Int(subcategory ["coupon"].stringValue),
                                icon: subcategory ["icon"].string,
                                order: Int(subcategory ["order"].stringValue),
                                aname: subcategory ["aname"].string,
                                options: Int(subcategory ["options"].stringValue),
                                items: subcategory ["items"].arrayObject
                            )

                            self.subcategories.append(subcategory)
                        }

自定义单元格创建代码

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return menus.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

   let cell = tableView.dequeueReusableCellWithIdentifier("Menucell", forIndexPath: indexPath)as! MENUTableViewCell

    let menu: Menu = menus[indexPath.row]
    cell.Ordermenu.text! = menu.name!

    return cell
}

如何将子类别传递给自定义" Menutableviewcell"以便我可以将子类别数据显示在哪些部分?

1 个答案:

答案 0 :(得分:0)

如果我做对了,你就创建了一个名为SubCategory的类。如果是这种情况,您可以创建一个具有SubCategory类型的var,可选,在自定义单元格内,在创建单元格时,您可以传递您在自定义单元格中收到的SubCategory,并根据需要在那里使用它。

您的自定义单元格类似于

class MENUTableViewCell: UITableViewCell {

    var subCat: SubCategory?

    override init(frame: CGRect) {

      super.init(frame: frame)
      setupViews()
    }

    required init?(coder aDecoder: NSCoder) {
      fatalError("init(coder:) has not been implemented")
    }
}

当您创建单元格时,就像

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("Menucell", forIndexPath: indexPath)as! MENUTableViewCell

    cell.SubCategory = subcategories[indexPath.item]

    return cell
}

您可以对菜单执行相同操作,这样您就可以将所有数据传递到单元格中并处理所有内容。

编辑:您可以像这样使用didSet作为subCat var:

var subCat: subCategory? {
    didSet{

        if let name = subCategory?.name {
            nameLabel.text = name
        }else {
            nameLabel.text = "Some default text"
        }
}

这是更安全的方式,所以如果subCategory为零你的应用程序不会崩溃,你可以进一步检查你的代码,看看为什么它没有。