ReplyCell.h 407 B

12345678910111213141516171819
  1. //
  2. // ReplyCell.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/6/25.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HBCoreLabel.h"
  10. @interface ReplyCell : UITableViewCell
  11. @property(nonatomic,retain) HBCoreLabel * label;
  12. @property (nonatomic, strong) UIImageView *icon;
  13. @property (nonatomic, strong) UILabel *name;
  14. @property(nonatomic,assign) int pointIndex;
  15. @end