34 lines
745 B
C
34 lines
745 B
C
|
|
//
|
|||
|
|
// KBAIMessageListVC.h
|
|||
|
|
// keyBoard
|
|||
|
|
//
|
|||
|
|
// Created by Mac on 2026/1/28.
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#import <UIKit/UIKit.h>
|
|||
|
|
#import <JXCategoryView/JXCategoryListContainerView.h>
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_BEGIN
|
|||
|
|
|
|||
|
|
/// 消息列表基类,供 ZanVC 和 ChatingVC 继承
|
|||
|
|
@interface KBAIMessageListVC : UIViewController <JXCategoryListContentViewDelegate>
|
|||
|
|
|
|||
|
|
/// 列表类型:0 = Thumbs Up, 1 = Chatting
|
|||
|
|
@property (nonatomic, assign) NSInteger listType;
|
|||
|
|
|
|||
|
|
/// 数据源
|
|||
|
|
@property (nonatomic, strong) NSMutableArray *dataArray;
|
|||
|
|
|
|||
|
|
/// TableView
|
|||
|
|
@property (nonatomic, strong) UITableView *tableView;
|
|||
|
|
|
|||
|
|
/// 加载数据(子类重写)
|
|||
|
|
- (void)loadData;
|
|||
|
|
|
|||
|
|
/// 删除某条数据(子类重写)
|
|||
|
|
- (void)deleteItemAtIndexPath:(NSIndexPath *)indexPath;
|
|||
|
|
|
|||
|
|
@end
|
|||
|
|
|
|||
|
|
NS_ASSUME_NONNULL_END
|