| 123456789101112131415161718 |
- //
- // PersonCell.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/13.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PersonCell : UITableViewCell
- /** 联系人名字 */
- @property(nonatomic,strong)UILabel *nameLabel;
- @property(nonatomic,strong)UILabel *phoneLabel;
- @property(nonatomic,strong)UIButton *deleteButton;
- @end
|