1234567891011121314151617181920212223 |
- //
- // FindResultViewCell.h
- // smartRhino
- //
- // Created by niuzhen on 2019/12/7.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FindChatItemsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FindResultViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *IconV;
- @property (weak, nonatomic) IBOutlet UILabel *TitleL;
- @property (weak, nonatomic) IBOutlet UILabel *TimeL;
- @property (weak, nonatomic) IBOutlet UILabel *SubTitleL;
- - (void)loadDataWithModel:(FindChatItemsModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|