説明なし

CustomerListCell.h 871B

1234567891011121314151617181920212223242526
  1. /************************************************************
  2. * * EaseMob CONFIDENTIAL
  3. * __________________
  4. * Copyright (C) 2013-2014 EaseMob Technologies. All rights reserved.
  5. *
  6. * NOTICE: All information contained herein is, and remains
  7. * the property of EaseMob Technologies.
  8. * Dissemination of this information or reproduction of this material
  9. * is strictly forbidden unless prior written permission is obtained
  10. * from EaseMob Technologies.
  11. */
  12. #import <UIKit/UIKit.h>
  13. #import <APAvatarImageView.h>
  14. #import "CommonEnum.h"
  15. @interface CustomerListCell : UITableViewCell
  16. @property (nonatomic, strong) APAvatarImageView *headView;
  17. @property (nonatomic, strong) UILabel *nickLabel;
  18. @property (nonatomic, strong) UILabel *messageLabel;
  19. @property (nonatomic, strong) UILabel *unreadLabel;
  20. @property (nonatomic, strong) UILabel *timeLabel;
  21. @end