I have a WKInterfaceTable
in my storyboard. When a row is tapped, I make changes to the record display but would like to scroll to the top. How do I do this?
This is what my code looks like so far:
@IBOutlet var currentTable: WKInterfaceTable!
override func table(table: WKInterfaceTable, didSelectRowAtIndex rowIndex: Int) {
// Make changes to records...
// TODO: Scroll to the top???
}
I couldn't find anything in the API for the table currentTable
unless there's something I'm missing?