JXRPacketListCell.h 813 B

123456789101112131415161718192021222324
  1. //
  2. // JXRPacketListCell.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/8/31.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXRPacketListCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UIImageView *headerImage;
  11. @property (strong, nonatomic) IBOutlet UILabel *nameLabel;
  12. @property (strong, nonatomic) IBOutlet UILabel *timeLabel;
  13. @property (strong, nonatomic) IBOutlet UILabel *moneyLabel;
  14. @property (strong, nonatomic) IBOutlet UIView *buttomLine;
  15. @property (strong, nonatomic) IBOutlet UILabel *contentLab;
  16. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *headImageWidthCon;
  17. @property (strong, nonatomic) IBOutlet UIImageView *kingImgV;
  18. @property (strong, nonatomic) IBOutlet UILabel *bestLab;
  19. @property (nonatomic, strong) UIView *line;
  20. @end