I have placed UITextField over each UITableView cell. While scrolling the UITableView cell the text over the UITextField is getting lost. What can I do to prevent this?
I have placed UITextField over each UITableView cell. While scrolling the UITableView cell the
Share
You need to get track of an
NSMutableArraywhich stores the text field values. Make the initial values @””. When you insert the text field into the cell, get the value from the appropriate value in the array.If the text field exits, do something like this to store your text field values in the array: