BGVideoMirrorCell.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // BGVideoMirrorCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 2017/3/24.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PersonCenterListModel.h"
  10. @protocol ZanandVideoDelegate <NSObject>
  11. //tag=0视频 =1点赞
  12. - (void)zanOrVideoClickWithTag:(int)tag;
  13. @end
  14. @interface BGVideoMirrorCell : UITableViewCell
  15. @property (weak,nonatomic)id<ZanandVideoDelegate>ZVDelegate; //代理
  16. @property(nonatomic,strong) UIImageView *headImgView; //头像
  17. @property(nonatomic,strong) UILabel *zanLabel; //zanLabel
  18. @property(nonatomic,strong) UIImageView *zanImgView; //zan头像
  19. @property(nonatomic,strong) UILabel *videoLabel; //videoLabel
  20. @property(nonatomic,strong) UIImageView *videoImgView; //video头像
  21. @property(nonatomic,strong) UILabel *nameLabel; //名字
  22. @property(nonatomic,strong) TTTAttributedLabel *abstractLabel; //简介
  23. @property(nonatomic,strong) UIButton *videoBtn; //视频的点击
  24. @property(nonatomic,strong) UIButton *ZanBtn; //赞的点击
  25. @property(nonatomic,strong) UIImageView *iconImgView; //认证的图标
  26. @property(nonatomic,strong) UIView *lineView; //下划线
  27. - (CGFloat)creatCellWithModel:(PersonCenterListModel *)model andRow:(int)row isVideo:(BOOL)isVideo;
  28. @end