tags:

views:

21

answers:

2

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..

A: 

maybe you can search on attributes? GetRowCellValue() ?

Serkan Hekimoglu
no its not working
mrugen
A: 

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).

If it's not a custom cell but a standard UITableViewCell then you can get it's text using cell.textLabel.text.

If it's neither of the above then please provide further detail.

Nebs