NIMSessionTimestampCell.h 434 B

123456789101112131415161718192021
  1. //
  2. // NTESSessionTipCell.h
  3. // NIMDemo
  4. //
  5. // Created by ght on 15-1-28.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "NIMMessageCellProtocol.h"
  10. @class NIMTimestampModel;
  11. @interface NIMSessionTimestampCell : UITableViewCell
  12. @property (strong, nonatomic) UIImageView *timeBGView;
  13. @property (strong, nonatomic) UILabel *timeLabel;
  14. - (void)refreshData:(NIMTimestampModel *)data;
  15. @end