ChatAttachment.m 336 B

12345678910111213141516171819202122
  1. //
  2. // ChatAttachment.m
  3. // TIMChat
  4. //
  5. // Created by AlexiChen on 16/3/31.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import "ChatAttachment.h"
  9. @implementation ChatImageAttachment
  10. - (instancetype)initWith:(TIMElem *)elem
  11. {
  12. if (self = [super init])
  13. {
  14. _elemRef = elem;
  15. }
  16. return self;
  17. }
  18. @end