I'm experimenting with WatchKit and I'm trying to accomplish something that may be obvious but I can't seem to figure out how.
I have a single watch interface that contains a table with several rows of the same row controller, each containing two buttons. The action methods for the buttons are contained in the appropriate row controller class. The background image of the button changes each time it is tapped. That all works. However, I also need to call a function in the interface controller and change some variables that exist in the interface controller, each time the button is tapped.
Is this possible? I also understand that I can't call didSelectRowAtIndex at the same time as my button action.
Thanks!