I'm using a WKInterfaceTable
on WatchOS.
If for example the table already has 5 rows,
and I
.setNumberOfRows(2, withRowType: "rows")
so that it now only has 2 rows,
does that mean that the 3 rows that are no longer visible are deallocated
(or do I have to run apptTable.removeRows
to de-allocate)?
Thanks