12345678910111213141516171819202122232425262728293031323334 |
- //
- // MTMsgSearchTableViewCell.m
- // Jianbinglian
- //
- // Created by Simon on 2021/2/24.
- // Copyright © 2021 Simon. All rights reserved.
- //
- #import "MTMsgSearchTableViewCell.h"
- #import "MTMsgListIconView.h"
- @interface MTMsgSearchTableViewCell ()
- @property (weak, nonatomic) IBOutlet UIView *iconView;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (nonatomic, strong) MTMsgListIconView *iconImgView;
- @end
- @implementation MTMsgSearchTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- self.iconImgView = [[MTMsgListIconView alloc] initWithFrame:CGRectMake(0, 0, self.iconView.frame.size.width, self.iconView.frame.size.height)];
- [self.iconView addSubview:self.iconImgView];
- self.iconImgView.imgArray = @[@"",@"",@"",@"",@"",@"",@"",@"",@""];
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|