码迷,mamicode.com
首页 > 其他好文 > 详细

XMPP聊天消息中,对是图片还是纯文本的判断

时间:2015-06-04 12:13:14      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

下面这些代码在:-(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;
    }


XMPP聊天消息中,对是图片还是纯文本的判断

标签:

原文地址:http://my.oschina.net/iOSliuhui/blog/424613

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!