12345678910111213141516171819202122232425262728 |
- //
- // NIMTimestampModel.m
- // NIMKit
- //
- // Created by chris.
- // Copyright (c) 2015年 NetEase. All rights reserved.
- //
- #import "NIMTimestampModel.h"
- #import "M80AttributedLabel+NIMKit.h"
- #import "NIMKitUtil.h"
- @implementation NIMTimestampModel
- - (instancetype)init{
- self = [super init];
- if (self) {
-
- }
- return self;
- }
- - (CGFloat)height{
- return 40.f;
- }
- @end
|