PlaybackTableViewCell.h 992 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // PlaybackTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/7/4.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class HMHotItemModel;
  10. @protocol playToMainDelegate <NSObject>
  11. - (void)handleWithPlayBackMainPage:(UITapGestureRecognizer *)sender index:(NSInteger)tag;
  12. @end
  13. @interface PlaybackTableViewCell : UITableViewCell
  14. @property (weak, nonatomic) id <playToMainDelegate>delegate;
  15. @property (strong, nonatomic) IBOutlet UIImageView *userIMg;
  16. @property (strong, nonatomic) IBOutlet UILabel *userName;
  17. @property (strong, nonatomic) IBOutlet UILabel *timeLable;
  18. @property (strong, nonatomic) IBOutlet UILabel *watchNamber;
  19. @property (strong, nonatomic) IBOutlet UILabel *SayLable;//话题
  20. @property (strong, nonatomic) IBOutlet UIImageView *levelImg;
  21. @property (strong, nonatomic) IBOutlet UILabel *backPlay;
  22. @property (weak, nonatomic) IBOutlet UIView *lineView;
  23. - (void)setValueForCell:(HMHotItemModel *)model index:(NSInteger)row;
  24. @end