EaseMessageTimeCell.h 897 B

12345678910111213141516171819202122232425262728293031323334
  1. /************************************************************
  2. * * Hyphenate CONFIDENTIAL
  3. * __________________
  4. * Copyright (C) 2016 Hyphenate Inc. All rights reserved.
  5. *
  6. * NOTICE: All information contained herein is, and remains
  7. * the property of Hyphenate Inc.
  8. * Dissemination of this information or reproduction of this material
  9. * is strictly forbidden unless prior written permission is obtained
  10. * from Hyphenate Inc.
  11. */
  12. #import <UIKit/UIKit.h>
  13. /** @brief 时间提示cell */
  14. @interface EaseMessageTimeCell : UITableViewCell
  15. @property (strong, nonatomic) NSString *title;
  16. /*
  17. * 时间显示字体
  18. */
  19. @property (nonatomic) UIFont *titleLabelFont UI_APPEARANCE_SELECTOR; //default [UIFont systemFontOfSize:12]
  20. /*
  21. * 时间显示颜色
  22. */
  23. @property (nonatomic) UIColor *titleLabelColor UI_APPEARANCE_SELECTOR; //default [UIColor grayColor]
  24. + (NSString *)cellIdentifier;
  25. @end