12345678910111213141516171819202122 |
- //
- // NewRowUserCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/14.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NewRowUserCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UIButton *CloseBtn;
- + (NewRowUserCell *)configCell:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|