Hello,
I would like to know if it is possible to create a table (WKInterfaceTable) that way, that it is possible to react on swipe gestures on specific elements of this table.
I can create a swipe gesture recognizer and if I swipe on a table element a function in the interface controller can be triggered:
@IBAction func Swipe(_ sender: Any) { }
But I can not find the information from wich row index the event was send. Like in the function:
override func table(_ table: WKInterfaceTable, didSelectRowAt rowIndex: Int) {}
Is this possible?
Thanks!