如何在 uicollectionviewcell 中保存文本字段值
How to save text field value in uicollectionviewcell
嗨,我在 uicollectionviewcell 中有文本字段
so what i need it example :
当我编辑第 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
}
}
在您的 ViewController 中实施 UITextFieldDelegate 协议,特别是 textField:didEndEditing 方法。
将您的 indexPath.row 保存在 textField.tag 中,并将委托设置为控制器,您可以在其中保存值。
这是一个非常简单的例子:
class MyViewController : UITableViewController {
var texts = [Int:String]()
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: UITableViewCell = tableView.dequeueReusableCellWithIdentifier( "Cell" ) as! UITableViewCell
cell.textField.delegate = self
cell.textField.tag = indexPath.row
// restore saved text, if any
if let previousText = texts[indexPath.row] {
cell.textField.text = previousText
}
else {
cell.textField.text = ""
}
// rest of cell initialization
return cell
}
}
extension MyViewController : UITextFieldDelegate {
func textFieldDidEndEditing(textField: UITextField) {
// save the text in the map using the stored row in the tag field
texts[textField.tag] = textField.text
}
}
嗨,我在 uicollectionviewcell 中有文本字段
so what i need it example :
当我编辑第 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
}
}
在您的 ViewController 中实施 UITextFieldDelegate 协议,特别是 textField:didEndEditing 方法。
将您的 indexPath.row 保存在 textField.tag 中,并将委托设置为控制器,您可以在其中保存值。
这是一个非常简单的例子:
class MyViewController : UITableViewController {
var texts = [Int:String]()
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
var cell: UITableViewCell = tableView.dequeueReusableCellWithIdentifier( "Cell" ) as! UITableViewCell
cell.textField.delegate = self
cell.textField.tag = indexPath.row
// restore saved text, if any
if let previousText = texts[indexPath.row] {
cell.textField.text = previousText
}
else {
cell.textField.text = ""
}
// rest of cell initialization
return cell
}
}
extension MyViewController : UITextFieldDelegate {
func textFieldDidEndEditing(textField: UITextField) {
// save the text in the map using the stored row in the tag field
texts[textField.tag] = textField.text
}
}