Data from textfield duplicates in my tableview cell whenever i scroll the tableview. Textfield repeated for every 6 rows again & again.
How to remove duplicate data from textfield using custom cell.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *Identifier= @"ProductCell";
PlaceOrderTableViewCell * ProductCell = [ProductsTblView dequeueReusableCellWithIdentifier:Identifier];
if (ProductCell==nil)
{
ProductCell = [[PlaceOrderTableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:Identifier];
}
}