TestCellLayoutConfig.m 575 B

12345678910111213141516171819202122232425
  1. //
  2. // TestCellLayoutConfig.m
  3. // 千模
  4. //
  5. // Created by MUMEI on 2018/7/3.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import "TestCellLayoutConfig.h"
  9. @implementation TestCellLayoutConfig
  10. - (BOOL)shouldShowAvatar:(NIMMessageModel *)model
  11. {
  12. // if ([self isSupportedChatroomMessage:model.message]) {
  13. // return NO;
  14. // }
  15. // if ([self isWhiteboardCloseNotificationMessage:model.message]){
  16. // return NO;
  17. // }
  18. // if ([self isRedpacketTip:model.message]) {
  19. // return NO;
  20. // }
  21. return [super shouldShowAvatar:model];
  22. }
  23. @end