hello i am having table view and in that table view i have put text field on each cell, now how to get the data from the cell , data is in the textfield..
你好我有表视图,在那个表视图中我已经在每个单元格上放置了文本字段,现在如何从单元格中获取数据,数据在文本字段中。
2 个解决方案
#1
0
You say it's a custom tableviewcell? How did you make this custom cell? You need to assign an IBOutlet to your textfield and access the text that way (using the 'text' property).
你说这是一个自定义的tableviewcell吗?你是怎么做这个自定义单元的?您需要将IBOutlet分配给文本字段并以该方式访问文本(使用“text”属性)。
If it's not a custom cell but a standard UITableViewCell then you can get it's text using cell.textLabel.text.
如果它不是自定义单元格而是标准UITableViewCell,那么您可以使用cell.textLabel.text获取它的文本。
If it's neither of the above then please provide further detail.
如果不是上述情况,请提供进一步的详细信息。
#2
0
maybe you can search on attributes? GetRowCellValue() ?
也许你可以搜索属性? GetRowCellValue()?
#1
0
You say it's a custom tableviewcell? How did you make this custom cell? You need to assign an IBOutlet to your textfield and access the text that way (using the 'text' property).
你说这是一个自定义的tableviewcell吗?你是怎么做这个自定义单元的?您需要将IBOutlet分配给文本字段并以该方式访问文本(使用“text”属性)。
If it's not a custom cell but a standard UITableViewCell then you can get it's text using cell.textLabel.text.
如果它不是自定义单元格而是标准UITableViewCell,那么您可以使用cell.textLabel.text获取它的文本。
If it's neither of the above then please provide further detail.
如果不是上述情况,请提供进一步的详细信息。
#2
0
maybe you can search on attributes? GetRowCellValue() ?
也许你可以搜索属性? GetRowCellValue()?