-
Notifications
You must be signed in to change notification settings - Fork 41
/
YJTableViewDelegate.h
124 lines (99 loc) · 3.54 KB
/
YJTableViewDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
//
// YJTableViewDelegate.h
// YJTableViewFactory
//
// HomePage:https://github.com/937447974/YJTableViewFactory
// YJ技术支持群:557445088
//
// Created by 阳君 on 16/3/26.
// Copyright © 2016年 YJFactory. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "YJSuspensionCellView.h"
NS_ASSUME_NONNULL_BEGIN
@class YJTableCellObject, YJTableViewDataSource;
/** 缓存高的策略*/
typedef NS_ENUM(NSInteger, YJTableViewCacheHeight) {
YJTableViewCacheHeightDefault, ///< 根据相同的UITableViewCell类缓存高度
YJTableViewCacheHeightIndexPath, ///< 根据NSIndexPath对应的位置缓存高度
YJTableViewCacheHeightClassAndIndexPath ///< 根据类名和NSIndexPath双重绑定缓存高度
};
/** 点击cell的block*/
typedef void (^ YJTableViewCellBlock)(YJTableCellObject *cellObject, UITableViewCell * __nullable tableViewCell);
/** 点击cell的协议*/
@protocol YJTableViewCellProtocol <NSObject>
/**
* 用户点击Cell
*
* @param cellObject 用户点击的cell数据
* @param tableViewCell 用户点击的Cell
*
* @return void
*/
- (void)tableViewDidSelectCellWithCellObject:(YJTableCellObject *)cellObject tableViewCell:(nullable UITableViewCell *)cell;
@end
/** UITableViewDelegate抽象接口*/
@interface YJTableViewDelegate : NSObject <UITableViewDelegate>
@property (nonatomic) BOOL isCacheHeight; ///< 是否缓存高,默认YES缓存,NO不缓存
@property (nonatomic) YJTableViewCacheHeight cacheHeightStrategy; ///< 缓存高的策略。无须赋值,YJTableViewDataSource抽象接口会根据cacheCellStrategy自动赋值
@property (nonatomic, weak, nullable) id <YJTableViewCellProtocol> cellDelegate; ///< 点击cell的代理
@property (nonatomic, copy, nullable) YJTableViewCellBlock cellBlock; ///< 点击cell的block
@property (nonatomic, weak, readonly) YJTableViewDataSource *dataSource; ///< YJTableViewDataSource
@property (nonatomic, strong) YJSuspensionCellView *suspensionCellView; ///< 悬浮的cell层
/**
* 初始化
*
* @param dataSource YJTableViewDataSource数据源
*
* @return YJTableViewDelegate
*/
- (instancetype)initWithDataSource:(YJTableViewDataSource *)dataSource;
/**
* UITableViewCell向VC发送数据
*
* @param cellObject 用户点击的cell数据
* @param tableViewCell 用户点击的Cell
*
* @return void
*/
- (void)sendVCWithCellObject:(YJTableCellObject *)cellObject tableViewCell:(nullable UITableViewCell *)cell;
/**
* 清除所有缓存高
*
* @return void
*/
- (void)clearAllCacheHeight;
/**
* 根据cell的类清楚缓存高,cacheHeightStrategy = YJTableViewCacheHeightDefault
*
* @param cellClass UITableViewCell类
*
* @return void
*/
- (void)clearCacheHeightWithCellClass:(Class)cellClass;
/**
* 根据NSIndexPath位置清除缓存高,cacheHeightStrategy = YJTableViewCacheHeightIndexPath
*
* @param indexPath NSIndexPath
*
* @return void
*/
- (void)clearCacheHeightWithIndexPath:(NSIndexPath *)indexPath;
/**
* 根据NSIndexPath集合清除对应的缓存高,cacheHeightStrategy = YJTableViewCacheHeightIndexPath
*
* @param indexPaths NSIndexPath集合
*
* @return void
*/
- (void)clearCacheHeightWithIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
/**
* 清除[startIndexPath,endIndexPath]的缓存高,cacheHeightStrategy = YJTableViewCacheHeightIndexPath
*
* @param cellClass UITableViewCell类
*
* @return void
*/
- (void)clearCacheHeightWithFromIndexPath:(NSIndexPath *)startIndexPath toIndexPath:(NSIndexPath *)endIndexPath;
@end
NS_ASSUME_NONNULL_END