我有一个聊天应用程序,我想在其中显示在线成员和离线成员。现在我为在线会员添加一个绿点,像这样的单元格图像:
UIImage *cellImage = [UIImage imageNamed:@"green.png"];
cell.imageView.image = cellImage;
[cell.imageView setTag:102];
//NSStringEncoding encoding=NSASCIIStringEncoding;
cell.imageView.frame=CGRectMake(0,0,13,13);
cell.imageView.bounds=CGRectMake(0,0,13,13);
[cell.imageView setClipsToBounds:NO];
现在,当用户离线时,我想将此图像更改为红色。现在我在触发函数中从表格视图中删除离线用户:
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:[channel.memberIDs indexOfObject:memberID] inSection:0]]
withRowAnimation:UITableViewRowAnimationTop];
[self.tableView endUpdates];
但现在我不想做删除过程。我想更改red.png
我所拥有的图像。谁能告诉我我该怎么做?