CommonBarCell.m 406 B

1234567891011121314151617181920212223
  1. //
  2. // CommonBarCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/28.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "CommonBarCell.h"
  9. @implementation CommonBarCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setDataWithModel:(CommonBarModel *)model
  15. {
  16. self.nameL.text = model.name;
  17. self.imagV.image = IMG(model.imageStr);
  18. }
  19. @end