BogoNewsLikesCell.h 791 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BogoNewsLikesCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/7.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BogoNewsHeadTypeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoNewsLikesCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  13. @property (weak, nonatomic) IBOutlet UILabel *nickNameL;
  14. @property (weak, nonatomic) IBOutlet UILabel *contentL;
  15. @property (weak, nonatomic) IBOutlet UILabel *timeL;
  16. @property (weak, nonatomic) IBOutlet UIButton *rightImgBtn;
  17. @property (weak, nonatomic) IBOutlet UILabel *contentImgView;
  18. @property(nonatomic, strong) BogoNewsHeadTypeModel *model;
  19. -(void)resetContentWithModel:(BogoNewsHeadTypeModel *)model type:(NSInteger)type;
  20. @end
  21. NS_ASSUME_NONNULL_END