私はそれにセルが入ったテーブルを持っています。セル内のピッカービューがありデータをtableViewセルスウィフトに渡す
今、私は、私はピッカービュー
内のデータを表示することができますテーブルビューのセルに親コントローラからのデータ(オブジェクトの配列)を渡したいです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しよう:私はTextViewに
例豆とテキストのセルのラベルにアクセスすることができます
cell.ingredientName.text = foods[row].name
cell.ingredientText.text = foodQuantities[row]
しかし:と
Thats how the table is constructed
ピッカービューを作成するために、私はピッカービューを作成できるように、各セルにデータの配列を送信する必要があります。
実際に使用することができ、使用した方法が正しいです。あなたの問題は何ですか? –
これを実行している場合、テーブルビューのセルにデータを渡す方法 –