I'm working on an iPhone based BI project.
I have a UITextField
in a UITextViewCell
, the UITextFieldDelegate
points to my UITableViewController
, I haven't done any sub-classing for the UITextViewCell
nor the UITextField
.
Now after the text field end editing on the delegate
-(void)textFieldDidEndEditing:(UITextField*)textField
I need to know the row index of the current cell I'm editing, is there any way to get the parent cell of the text field? Or can I set some property to the textfield like 'rowIndex' when I create the cell? I really need this value inorderto save the new text.
Thank you. May the Force be with you.