我的应用程序中有一个表格视图,用于与自定义表格视图单元进行消息传递。这个 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]
行不通?