| 12345678910111213141516171819202122232425 |
- //
- // TestCellLayoutConfig.m
- // 千模
- //
- // Created by MUMEI on 2018/7/3.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import "TestCellLayoutConfig.h"
- @implementation TestCellLayoutConfig
- - (BOOL)shouldShowAvatar:(NIMMessageModel *)model
- {
- // if ([self isSupportedChatroomMessage:model.message]) {
- // return NO;
- // }
- // if ([self isWhiteboardCloseNotificationMessage:model.message]){
- // return NO;
- // }
- // if ([self isRedpacketTip:model.message]) {
- // return NO;
- // }
- return [super shouldShowAvatar:model];
- }
- @end
|