JCHATShowTimeCell.h 433 B

123456789101112131415161718
  1. //
  2. // JCHATShowTimeCell.h
  3. // JPush IM
  4. //
  5. // Created by Apple on 15/1/13.
  6. // Copyright (c) 2015年 Apple. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JCHATChatModel.h"
  10. @interface JCHATShowTimeCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *messageTimeLabel;
  12. @property (strong, nonatomic) JCHATChatModel *model;
  13. - (void)setCellData :(JCHATChatModel *)model;
  14. //- (void)layoutErrorMessage;
  15. @end