Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPSearchListTableViewCell.h
2021-12-02 20:33:58 +08:00

25 lines
473 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;
@interface XPSearchListTableViewCell : UITableViewCell
///配置数据
- (void)configData:(HomeSearchResultModel *)resultModel type:(SearchType)type;
@end
NS_ASSUME_NONNULL_END