uiimageview - Asynchronous images loading again and again in the Uitableview cells -
having trouble asynchronous images don't know why having weird problem. applying asynchronous images load technique images not freezing once loaded on scrolling again loading. - (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath{ static nsstring *cellidentifier = @"cell"; uitableviewcell *cell = [tableview dequeuereusablecellwithidentifier:cellidentifier]; if (cell == nil) { cell=[self getcellcontentview:cellidentifier]; } [cell setbackgroundcolor:[uicolor redcolor]]; nslog(@"%i",[discussionarray count]); nsdictionary *dict=[discussionarray objectatindex:indexpath.row]; uilabel *textlabel1 = (uilabel *)[cell viewwithtag:1]; uilabel *textlabel2 = (uilabel *)[cell viewwithtag:2]; uilabel *textlabel3 = (uilabel *)[cell viewwithtag:3]; uiimageview *avatarimage = (uiimageview *)[cell viewwithtag:4]; uiimageview *new_oldimage = (uiimageview *)[cell vieww...