LocSeriviceCell.m 440 B

123456789101112131415161718192021222324
  1. //
  2. // LocSeriviceCell.m
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/12/16.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import "LocSeriviceCell.h"
  9. @implementation LocSeriviceCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  15. [super setSelected:selected animated:animated];
  16. self.imgV.hidden = !selected;
  17. }
  18. @end