SelPeopleCell.h 550 B

123456789101112131415161718192021222324
  1. //
  2. // SelPeopleCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/25.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface SelPeopleCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIButton *iconBtn;
  11. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  12. @property (weak, nonatomic) IBOutlet UILabel *signatureL;
  13. /** 头像点击事件(预留) */
  14. - (IBAction)clickIconBtn:(UIButton *)sender;
  15. +(SelPeopleCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  16. @end