现在,我正在制作消息应用程序。
下图显示了last_message类。
它包括主列
-sender
- 接收
-graphicFile
然后,我可以通过直接将图像设置为graphicFile列来显示上图中的图像。
但它太多了,因为他们必须在消息时更新graphicFile。我认为使用指针更好,但我不确定如何使用指向具有User的profileImage的PFUser。
哪个更好用于现有代码或使用指针? 如果使用指针更好,如何使用指针?
我展示了我的代码。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object {
static NSString *CellIdentifier = @"Cell";
commentTableViewCell *cell = (commentTableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[commentTableViewCell alloc] init];
}
cell.usernameLabel.text = [object objectForKey:@"receiver"];
cell.commentLabel.text = [object objectForKey:@"message"];
cell.leftImage.file = [object objectForKey:@"graphicFile"];
[cell.leftImage loadInBackground];
return cell;
}