If you added a UITextField to the UITableViewCell as Subviews, this way you can access the UITableViewCell from your UITextField's superview .
Try below.
UITableViewCell* myCell = (UITableViewCell*)textField.superview ;
Let me know about any issues you are facing.
Edited by:
you will get a string from the tag property of your UITextField So
NSUInteger myRow = myTextField.tag;
As you said, your application does not support multiple sections, this means that you have all your lines in section 0.
NSUInteger mySection = 0;
Now create an instance of NSIndexPath from the above information.
NSIndexPath *myIndexPath =[NSIndexPath indexPathForRow:myRow inSection:mySection];
You now have myCell , which is on myRow in a UITableView
source share