1234567891011121314151617181920212223242526272829303132 |
- //
- // ChatSearchFindbyFuJCell.h
- // smartRhino
- //
- // Created by armin on 2019/11/8.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatSearchFindbyFuJCell : UITableViewCell
- @property (strong,nonatomic) IBOutlet UIImageView *cell0UserImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0UserNameLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell0TimeLabel;
- @property (strong,nonatomic) IBOutlet UIView *cell0ContentBgView;
- @property (strong,nonatomic) IBOutlet UIImageView *cell0FuJTypeImgView;
- @property (strong,nonatomic) IBOutlet UILabel *cell0FuJNameLabel;
- @property (strong,nonatomic) IBOutlet UILabel *cell0FuJDaXiaoLabel;
- + (CGFloat)configCell0Height;
- + (ChatSearchFindbyFuJCell *)configCell0:(UITableView *)tableView indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|