Reputation: 5183
I have a WKInterfaceTable
in my interface controller and have added a Context Menu to the controller. On tap holding a specific row, the row depresses and displays the context menu. How do I know what row the menu is for?
Upvotes: 1
Views: 477
Reputation: 5939
The context menu is for the entire view, it has no concept of where you tapped.
Upvotes: 2
Reputation: 5121
The following gets called on your WKInterfaceController
.
- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex
Upvotes: -1