123456789101112131415 |
- //
- // ContactTableViewCell.h
- // 通讯录
- //
- // Created by EchoShacolee on 2017/5/22.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ContactTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @property (weak, nonatomic) IBOutlet UILabel *phoneLab;
- @end
|