SelectTextCell.m 420 B

12345678910111213141516171819202122232425
  1. //
  2. // SelectTextCell.m
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/2.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "SelectTextCell.h"
  9. @implementation SelectTextCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. }
  13. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  14. [super setSelected:selected animated:animated];
  15. // Configure the view for the selected state
  16. }
  17. @end