A simple example for NSTableViewRowAction? Scroll left/right to delete or other action.
- (NSArray<NSTableViewRowAction *> *)tableView:(NSTableView *)tableView rowActionsForRow:(NSInteger)row edge:(NSTableRowActionEdge)edge
A simple example for NSTableViewRowAction? Scroll left/right to delete or other action.
- (NSArray<NSTableViewRowAction *> *)tableView:(NSTableView *)tableView rowActionsForRow:(NSInteger)row edge:(NSTableRowActionEdge)edge
Copyright © 2021 Jogjafile Inc.
You just have to implement a
NSTableViewDelegate
method that returns action(s) that encapsulate the style, title and handler code for your table row action:Note that the return value is an array so you can return more than one action per row. If you want to return different actions for each swipe direction, you can do that by checking the
edge
parameter that gets passed into the delegate method.