Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPSearchListTableViewCell.h
2022-12-23 10:49:26 +08:00

29 lines
602 B
Objective-C

//
// XPSearchListTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2021/11/29.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
typedef NS_ENUM(NSInteger, SearchType){
///搜索房间
SearchType_Room = 1,
///搜索用户
SearchType_Users = 2,
};
@class HomeSearchResultModel, HomeRecommendRoomModel;
@interface XPSearchListTableViewCell : UITableViewCell
///配置数据
- (void)configData:(HomeSearchResultModel *)resultModel type:(SearchType)type;
///配置大家都在搜房间列表
- (void)configEveryoneData:(HomeRecommendRoomModel *)resultModel;
@end
NS_ASSUME_NONNULL_END