123456789101112131415161718192021222324 |
- //
- // ContactTableViewCell.m
- // 通讯录
- //
- // Created by EchoShacolee on 2017/5/22.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "ContactTableViewCell.h"
- @implementation ContactTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|