标签:
下面这些代码在:-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath这个方法中执行!!!! XMPPMessageArchiving_Message_CoreDataObject *msg=_resultsContr.fetchedObjects[indexPath.row]; NSString* chatType=[msg.message attributeStringValueForName:@"bodyType"]; if ([chatType isEqualToString:@"image"]) { [cell.imageView sd_setImageWithURL:[NSURL URLWithString:msg.body] placeholderImage:[UIImage imageNamed:@"ToolViewEmotion"]]; cell.textLabel.text=nil; } else if ([chatType isEqualToString:@"text"]) { //显示消息 if ([msg.outgoing boolValue]) { cell.textLabel.text=msg.body; } else { cell.textLabel.text=msg.body; } cell.imageView.image=nil; }
标签:
原文地址:http://my.oschina.net/iOSliuhui/blog/424613