3422 Logged Off 1 3432 Logged Off 0 UIImage * cellimages = [[UIImage alloc]init]; NSString *string1 = @"http://telecomstats.co.uk/images/LLReaderProfile/"; NSString *cellvalue =[[[[self rssParser]rssItems]objectAtIndex:indexPath.row]picture]; NSString* disable = [[NSString alloc] initWithString:@"0"]; if (cellvalue == disable) { cellimages = [UIImage imageWithContentsOfFile:@"http://telecomstats.co.uk/images/LLReaderProfile/noimage.jpg"]; } else { cellimages = [string1 stringByAppendingString:[[[[self rssParser]rssItems]objectAtIndex:indexPath.row]id]]; cellimages = [cellimages stringByAppendingString: @".jpg"]; } cellimages = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:cellimages]]]; cell.imageView.image = cellimages; cellimages = [UIImage imageWithContentsOfFile:@"http://telecomstats.co.uk/images/LLReaderProfile/noimage.jpg"]; cellimages = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:cellimages]]];