PersonCell.h 413 B

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