1

我的应用程序中有一个表格视图,用于与自定义表格视图单元进行消息传递。这个 tableview 填充了来自 JSON 的数组。如果消息未读,我在单元格中有一个 UIImageView 显示蓝点图像。

这是一些代码:

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:YES];
    messagesArray = [self getMessages];
    [messagesTableView reloadData];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *cellIdentifier = @"MessagesCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (!cell)
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];

    NSDictionary *messagesDictionary = [messagesArray objectAtIndex:indexPath.row];

    UILabel *nameLabel = (UILabel *)[cell viewWithTag:100];     
    nameLabel.text = [messagesDictionary objectForKey:@"fromUserName"];

    UIImageView *readImage = (UIImageView *)[cell viewWithTag:103];
    NSNumber *boolNumber = [messagesDictionary valueForKey:@"readFlag"];
    BOOL read = [boolNumber boolValue];

    if (!read)
        readImage.image = [UIImage imageNamed:@"Message Read Circle"];

    return cell;
}

当消息被选中时,我向服务器发送一条消息,让它知道消息已读,但是当我返回时,它仍然有未读图像。如果我在模拟器中退出应用程序并重新加载应用程序,未读图像将从我选择的消息中消失,所以我知道标记为已读消息正在通过。为什么[messagesTableView reloadData]行不通?

4

2 回答 2

3

由于 table view 单元格被重用,你应该在任何情况下设置图像,而不仅仅是 if read == NO。就像是:

if (read)
    readImage.image = [UIImage imageNamed:@"Message Read Circle"];
else
    readImage.image = [UIImage imageNamed:@"Message Unread Circle"];
于 2013-09-04T21:08:54.297 回答
1

看起来您实际上并没有像您所说的那样在 viewDidAppear 中的 tableview 上调用 reloadData 。

此外,就像 Mike Z 上面问的那样,您的 getMessages 调用时间可能存在问题。这个方法是同步的还是异步的?发布其中一些代码也可能会有所帮助。

此外,如果您的消息已被阅读,您需要确保将 readImage 设置为 nil。请记住,这些单元格是出列的,因此如果您不将 imageView 设置为 read 属性的 true 和 false 状态,您可能会得到错误的结果。

于 2013-09-04T21:12:32.253 回答