Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions RATreeView/RATreeView/RATreeView.h
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ typedef enum RATreeViewRowAnimation {
*
* @return An id object that confirms or alters the selected row. Return an id object other than item if you want another cell to be selected. Return nil if you don't want the row selected.
*/
- (id)treeView:(RATreeView *)treeView willSelectRowForItem:(id)item;
- (id _Nullable)treeView:(RATreeView *)treeView willSelectRowForItem:(id)item;

/**
* Tells the delegate that the row for a specified item is now selected.
Expand All @@ -276,7 +276,7 @@ typedef enum RATreeViewRowAnimation {
*
* @return An id object that confirms or alters the deselected row. Return an id object other than item if you want another cell to be deselected. Return nil if you don’t want the row deselected.
*/
- (id)treeView:(RATreeView *)treeView willDeselectRowForItem:(id)item;
- (id _Nullable)treeView:(RATreeView *)treeView willDeselectRowForItem:(id)item;

/**
* Tells the delegate that the row for a specified item is now deselected.
Expand Down