123456789101112131415161718192021222324 |
- //
- // LocSeriviceCell.m
- // LN_School
- //
- // Created by EchoShacolee on 2017/12/16.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import "LocSeriviceCell.h"
- @implementation LocSeriviceCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- self.imgV.hidden = !selected;
- }
- @end
|