我有一個單元格的表格。內的小區有一個選擇器視圖傳遞數據到tableView單元格swift
現在我想從父控制器到表視圖細胞傳遞數據(對象數組),所以我可以顯示在選擇器視圖
數據var foodServings:[FoodUnit]=[]
func tableView(tableView:UITableView, cellForRowAtIndexPath indexPath:NSIndexPath)->UITableViewCell{
let cell = tableView.dequeueReusableCellWithIdentifier("recipeIngredientCell",forIndexPath: indexPath) as! ReceiptIngredientsViewCell
let row = indexPath.row
cell.ingredientName.text = foods[row].name
cell.ingredientText.text = foodQuantities[row]
// cell.foodServings = self.foodServings
return cell
}
我希望我可以發送數據到單元,但這沒有奏效。
我嘗試clearify這一點:
Thats how the table is constructed
有:
cell.ingredientName.text = foods[row].name
cell.ingredientText.text = foodQuantities[row]
我可以訪問例如豆細胞標籤和文本中的TextView
但填充選擇器視圖我需要發送一個數據數組到每個單元格,以便我可以填充選擇器視圖。
其實你可以和你使用的方式是正確的。你怎麼了? –
你做到了這一點,如果是的話,那麼你如何將數據傳遞到tableview單元格 –