forked from SwipeCellKit/SwipeCellKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwipeTableViewCellDelegate.swift
More file actions
executable file
·94 lines (65 loc) · 3.85 KB
/
Copy pathSwipeTableViewCellDelegate.swift
File metadata and controls
executable file
·94 lines (65 loc) · 3.85 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
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
//
// SwipeTableViewCellDelegate.swift
//
// Created by Jeremy Koch
// Copyright © 2017 Jeremy Koch. All rights reserved.
//
import UIKit
/**
The `SwipeTableViewCellDelegate` protocol is adopted by an object that manages the display of action buttons when the cell is swiped.
*/
@available(iOS 11, tvOS 11, *)
public protocol SwipeTableViewCellDelegate: class {
/**
Asks the delegate for the actions to display in response to a swipe in the specified row.
- parameter tableView: The table view object which owns the cell requesting this information.
- parameter indexPath: The index path of the row.
- parameter orientation: The side of the cell requesting this information.
- returns: An array of `SwipeAction` objects representing the actions for the row. Each action you provide is used to create a button that the user can tap. Returning `nil` will prevent swiping for the supplied orientation.
*/
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> [SwipeAction]?
/**
Asks the delegate for the display options to be used while presenting the action buttons.
- parameter tableView: The table view object which owns the cell requesting this information.
- parameter indexPath: The index path of the row.
- parameter orientation: The side of the cell requesting this information.
- returns: A `SwipeOptions` instance which configures the behavior of the action buttons.
- note: If not implemented, a default `SwipeOptions` instance is used.
*/
func tableView(_ tableView: UITableView, editActionsOptionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> SwipeOptions
/**
Tells the delegate that the table view is about to go into editing mode.
- parameter tableView: The table view object providing this information.
- parameter indexPath: The index path of the row.
- parameter orientation: The side of the cell.
*/
func tableView(_ tableView: UITableView, willBeginEditingRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation)
/**
Tells the delegate that the table view has left editing mode.
- parameter tableView: The table view object providing this information.
- parameter indexPath: The index path of the row.
- parameter orientation: The side of the cell.
*/
func tableView(_ tableView: UITableView, didEndEditingRowAt indexPath: IndexPath?, for orientation: SwipeActionsOrientation)
/**
Asks the delegate for visibile rectangle of the table view, which is used to ensure swipe actions are vertically centered within the visible portion of the cell.
- parameter tableView: The table view object providing this information.
- returns: The visible rectangle of the table view.
- note: The returned rectange should be in the table view's own coordinate system. Returning `nil` will result in no vertical offset to be be calculated.
*/
func visibleRect(for tableView: UITableView) -> CGRect?
}
/**
Default implementation of `SwipeTableViewCellDelegate` methods
*/
@available(iOS 11, tvOS 11, *)
public extension SwipeTableViewCellDelegate {
func tableView(_ tableView: UITableView, editActionsOptionsForRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) -> SwipeOptions {
return SwipeOptions()
}
func tableView(_ tableView: UITableView, willBeginEditingRowAt indexPath: IndexPath, for orientation: SwipeActionsOrientation) {}
func tableView(_ tableView: UITableView, didEndEditingRowAt indexPath: IndexPath?, for orientation: SwipeActionsOrientation) {}
func visibleRect(for tableView: UITableView) -> CGRect? {
return nil
}
}