我已将我的应用程序设置为使用Parse。我正在上传图片。当请求被发送到解析时,它将我的所有对象存储在数组'wallObjectsArray'中。然而,当我将它们设置为在我的UITableview中查看时,图像存在显示问题。最初显示然后一些将消失,直到我刷新UITableView。我之前使用过SDWebImage,但我认为我不需要它,因为所有的图像都存储在我的数组中,我只想显示它们并顺利滚动浏览UITableView。我正在使用customCell类。我的代码在下面
self.customCell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
PFObject *wallObject = [self.wallObjectsArray objectAtIndex:indexPath.row];
_image = (PFFile *)[wallObject objectForKey:@"image"];
self.customCell.profileImageView.image = [UIImage imageWithData:_image.getData];