1234567891011121314151617181920212223 |
- //
- // CommonBarCell.m
- // smartRhino
- //
- // Created by niuzhen on 2020/4/28.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "CommonBarCell.h"
- @implementation CommonBarCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setDataWithModel:(CommonBarModel *)model
- {
- self.nameL.text = model.name;
- self.imagV.image = IMG(model.imageStr);
- }
- @end
|