How to instantiate two different templates of dynamic row in WKInterfaceTable? For only one template I use functions
[self.stocksTable setNumberOfRows: self.stocksData.count withRowType:@"TableRow"];
TableRow *row = [self.stocksTable rowControllerAtIndex:i];
Question: How to have 2 types of row?
You want
-[WKInterfaceTable setRowTypes:]
: