forked from hbang/UXKit-Headers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUXTableViewDelegate.h
More file actions
58 lines (41 loc) · 3.9 KB
/
Copy pathUXTableViewDelegate.h
File metadata and controls
58 lines (41 loc) · 3.9 KB
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
// UXKit headers, derived from reverse engineering by Adam Demasi (@kirb)
// This is free and unencumbered software released into the public domain. Refer to LICENSE.md.
#import <Foundation/Foundation.h>
@class UXView, UXTableView;
@protocol UXTableViewDelegate <NSObject>
@optional
- (void)tableView:(UXTableView *)tableView willDisplayCell:(UXTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView willDisplayHeaderView:(UXView *)headerView forSection:(NSInteger)section;
- (void)tableView:(UXTableView *)tableView willDisplayFooterView:(UXView *)footerView forSection:(NSInteger)section;
- (void)tableView:(UXTableView *)tableView didEndDisplayingCell:(UXTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didEndDisplayingHeaderView:(UXView *)headerView forSection:(NSInteger)section;
- (void)tableView:(UXTableView *)tableView didEndDisplayingFooterView:(UXView *)footerView forSection:(NSInteger)section;
- (CGFloat)tableView:(UXTableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
- (CGFloat)tableView:(UXTableView *)tableView heightForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UXTableView *)tableView heightForFooterInSection:(NSInteger)section;
- (CGFloat)tableView:(UXTableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath;
- (CGFloat)tableView:(UXTableView *)tableView estimatedHeightForHeaderInSection:(NSInteger)section;
- (CGFloat)tableView:(UXTableView *)tableView estimatedHeightForFooterInSection:(NSInteger)section;
- (UXView *)tableView:(UXTableView *)tableView viewForHeaderInSection:(NSInteger)section;
- (UXView *)tableView:(UXTableView *)tableView viewForFooterInSection:(NSInteger)section;
- (NSInteger)tableView:(UXTableView *)tableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UXTableView *)tableView shouldHighlightRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didHighlightRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSIndexPath *)tableView:(UXTableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSIndexPath *)tableView:(UXTableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UXTableView *)tableView didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSInteger)tableView:(UXTableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSString *)tableView:(UXTableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSArray *)tableView:(UXTableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UXTableView *)tableView shouldIndentWhileEditingRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSInteger)tableView:(UXTableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath;
- (NSIndexPath *)tableView:(UXTableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)indexPath toProposedIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UXTableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath;
- (BOOL)tableView:(UXTableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender;
- (void)tableView:(UXTableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender;
@end