MainLiveTableViewCell.h 520 B

123456789101112131415161718192021
  1. //
  2. // MainLiveTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/6/15.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SenderModel;
  10. @interface MainLiveTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *timelabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *watchLabel;
  14. @property (weak, nonatomic) IBOutlet UIView *lineView;
  15. - (void)creatCellWithModel:(SenderModel *)model;
  16. @end