WKInterfaceTable, minimum row height?

Greetings,


I am working on a WatchKit 1 extension for one of my iOS apps. One of my storyboard scenes is designed as follows:


WKInterfaceTable

- Row

- - WKInterfaceGroup

- - - WKInterfaceLabel


The group's height is configured as "Size to Fit Content" and the label's number of lines is 0. The end result is a table with variable sized rows, which was the intended outcome. However, I'm looking for a way to set a minimum row height on the rows so I don't end up with thin rows that are harder to click for the user.


Any suggestions?

Answered by tom_witkin in 23293022

There isn't a minimum row height property. What you could do is adjust the content insets on the table row so that it never goes below a certain height.

Accepted Answer

There isn't a minimum row height property. What you could do is adjust the content insets on the table row so that it never goes below a certain height.

WKInterfaceTable, minimum row height?
 
 
Q