NewRowUserCell.h 518 B

12345678910111213141516171819202122
  1. //
  2. // NewRowUserCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2019/12/14.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NewRowUserCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  12. @property (weak, nonatomic) IBOutlet UILabel *nameL;
  13. @property (weak, nonatomic) IBOutlet UIButton *CloseBtn;
  14. + (NewRowUserCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
  15. @end
  16. NS_ASSUME_NONNULL_END