我正在使用 xmpp 开发聊天应用程序。我可以发送和接收消息。我的联系人在 tableview 中我的问题是当有来自在线用户的消息时,我想在我的 tableview 的在线用户行显示消息符号。当该行被选中消息符号将消失。
我尝试了使用标签的休闲方式,但没有实现
-(UITableViewCell*)tableView:(UITableView *)tableView1 cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellIdentifier=@"cell";
UITableViewCell *cell=[tableView1 dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell==nil)
{
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
XMPPUserCoreDataStorageObject *user1= [[self fetchedResultsController] objectAtIndexPath:indexPath];
cell.textLabel.text = user1.displayName;
UILabel *lblText = [[UILabel alloc] initWithFrame:CGRectMake(290,16,10,20)];
lblText.textColor = [UIColor orangeColor];
[cell addSubview:lblText];
if([cell.textLabel.text isEqualToString:user1.jidStr])
{
lblText.text=@"g";
}
}
谁能帮我。
提前致谢