NIMTimestampModel.m 393 B

12345678910111213141516171819202122232425262728
  1. //
  2. // NIMTimestampModel.m
  3. // NIMKit
  4. //
  5. // Created by chris.
  6. // Copyright (c) 2015年 NetEase. All rights reserved.
  7. //
  8. #import "NIMTimestampModel.h"
  9. #import "M80AttributedLabel+NIMKit.h"
  10. #import "NIMKitUtil.h"
  11. @implementation NIMTimestampModel
  12. - (instancetype)init{
  13. self = [super init];
  14. if (self) {
  15. }
  16. return self;
  17. }
  18. - (CGFloat)height{
  19. return 40.f;
  20. }
  21. @end