BogoChoiceAreaCell.m 591 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BogoChoiceAreaCell.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/25.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoChoiceAreaCell.h"
  9. @implementation BogoChoiceAreaCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setModel:(BogoChoiceAreaModel *)model{
  15. self.countryL.text = model.country;
  16. self.numL.text = model.area_code;
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. @end