1
您好,我有uicollectionviewcell文本字段如何保存在文本字段值uicollectionviewcell
所以我需要它例如:
,當我在第5行編輯文本提交的價值,我做到了走行20日提交的文本編輯值的CollectionView已裝載,並在5排忘記值,
,所以我需要的方式來保存的值時暫時做我手動更改
這是我的代碼:
cell.foodNumber.tag = indexPath.row
if let foodcodes = self.menu![indexPath.row]["code"] as? NSString {
if contains(self.indexPathsForSelectedCells, indexPath) {
cell.currentSelectionState = true
cell.foodNumber.enabled = true
cell.foodNumber.text = "1"
println("foods:\(foodcodes) Count:\(cell.foodNumber.text)")
println(cell.foodNumber.tag)
} else {
cell.foodNumber.enabled = false
cell.foodNumber.text = nil
}
}
非常感謝你,它工作得很好 –