美文网首页iOS之环信Demo3.0分析
环信之扩展消息方法一:增加父类cell扩展view

环信之扩展消息方法一:增加父类cell扩展view

作者: 思念那年慕云 | 来源:发表于2017-03-26 16:34 被阅读14次
      1,扩展一个类似web效果的消息。
    #消息展示的样式view,都是在EaseBubbleView的一个分类。如图0
    #我们也比着创建一个类似的分类EaseBubbleView+Web,就是我们希望消息展示的样式。
    
    #在底层父类EaseMessageCell中的普通消息中判断是否展示我们的自定义view( {EaseBaseMessageCell : EaseMessageCell),如图1.
    //这个方法是cell初始化的时候调用的会初始化UI
    - (void)_setupSubviewsWithType:(EMMessageBodyType)messageType
                          isSender:(BOOL)isSender
                             model:(id<IMessageModel>)model;
    
    #设置cell的高度,如图2
    + (CGFloat)cellHeightWithModel:(id<IMessageModel>)model
    
    #设置数据,如图3
    - (void)setModel:(id<IMessageModel>)model
    
    #别忘了设置cell的标识Identifier,发送时和接收时都有Identifier。如图4
    + (NSString *)cellIdentifierWithModel:(id<IMessageModel>)model;
    
    
    图0 图1 图1 图2 图3 图4 图4

    相关文章

      网友评论

        本文标题:环信之扩展消息方法一:增加父类cell扩展view

        本文链接:https://www.haomeiwen.com/subject/lehqmttx.html