BGZanCell.h 688 B

1234567891011121314151617181920212223242526
  1. //
  2. // BGZanCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/23.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class CommentModel;
  10. @protocol ZanHeadImgDeleGate <NSObject>
  11. - (void)ClickZanHeadImgViewWithTag:(int)tag;
  12. @end
  13. @interface BGZanCell : UITableViewCell
  14. @property (nonatomic,weak)id<ZanHeadImgDeleGate>ZHIDeleGate;
  15. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  16. @property (weak, nonatomic) IBOutlet UIImageView *iconImgView;
  17. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  18. @property (nonatomic,strong)UIView *lineView;
  19. - (void)creatCellWithModel:(CommentModel *)CModel andRow:(int)row;
  20. @end