我正在開發聊天應用程序使用xmpp.I可以發送和接收message.My的聯繫人在tableview這裏我的問題是當有消息從在線用戶,然後我想在我的tableview中的在線用戶行顯示消息符號。當該行被選中時,消息符號將消失。我怎麼能顯示傳入消息在iPhone的tableview中的特定行
我試着用標籤休耕的方式,但並沒有達到
-(UITableViewCell*)tableView:(UITableView *)tableView1 cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *[email protected]"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])
{
[email protected]"g";
}
}
任何一個可以幫助我。
由於事先