MTMsgSearchTableViewCell.m 988 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // MTMsgSearchTableViewCell.m
  3. // Jianbinglian
  4. //
  5. // Created by Simon on 2021/2/24.
  6. // Copyright © 2021 Simon. All rights reserved.
  7. //
  8. #import "MTMsgSearchTableViewCell.h"
  9. #import "MTMsgListIconView.h"
  10. @interface MTMsgSearchTableViewCell ()
  11. @property (weak, nonatomic) IBOutlet UIView *iconView;
  12. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  13. @property (nonatomic, strong) MTMsgListIconView *iconImgView;
  14. @end
  15. @implementation MTMsgSearchTableViewCell
  16. - (void)awakeFromNib {
  17. [super awakeFromNib];
  18. // Initialization code
  19. self.iconImgView = [[MTMsgListIconView alloc] initWithFrame:CGRectMake(0, 0, self.iconView.frame.size.width, self.iconView.frame.size.height)];
  20. [self.iconView addSubview:self.iconImgView];
  21. self.iconImgView.imgArray = @[@"",@"",@"",@"",@"",@"",@"",@"",@""];
  22. }
  23. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  24. [super setSelected:selected animated:animated];
  25. // Configure the view for the selected state
  26. }
  27. @end