I have  a UITableView in which i am fetching data from server and displaying it in the UITableViewCell. But data disappears while scrolling . Please help . 
Here is my cellForRowAtIndexPath :-
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *cellIdentifier=@"CellIdentifier";
    CCCustomCell *cell=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    //UITableViewCell *cell=[self.tableView cellForRowAtIndexPath:indexPath];
    if (cell==nil) {
        cell=[[CCCustomCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
    cell.keyText.text=[[[[arraySuper objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] allKeys] objectAtIndex:0];
    cell.objectText.text=[[[[arraySuper objectAtIndex:indexPath.section] objectAtIndex:indexPath.row] allObjects] objectAtIndex:0];
    [cell.objectText addConstraint:[NSLayoutConstraint constraintWithItem:cell.objectText
                                                                attribute:NSLayoutAttributeWidth
                                                                relatedBy:NSLayoutRelationEqual
                                                                   toItem:nil
                                                                attribute:NSLayoutAttributeHeight
                                                               multiplier:1.0
                                                                 constant:(cell.objectText.text.length>0)?50:0]];
    [cell setUserInteractionEnabled:YES];
    tableView.allowsSelection=YES;
      if (indexPath.row==0)
    {
        cell.keyText.textColor=[UIColor colorWithRed:62.0/255.0 green:60.0/255.0 blue:100.0/255.0 alpha:1];
        cell.keyText.font=[UIFont fontWithName:@"Helvetica-Bold" size:15];
        [cell setUserInteractionEnabled:YES];
    }
    else
    {
        cell.keyText.textColor=[UIColor colorWithRed:74.0/255.0 green:144.0/255.0 blue:226.0/255.0 alpha:1];
        cell.keyText.font=[UIFont fontWithName:@"Helvetica" size:13];
        cell.objectText.textColor=[UIColor colorWithRed:62.0/255.0 green:60.0/255.0 blue:100.0/255.0 alpha:1];
        cell.objectText.font=[UIFont fontWithName:@"Helvetica" size:13];
        cell.userInteractionEnabled=YES;
    }
       return cell;
}
 
     
     
    