Since SDK 13, the table rows in the card list have fully dynamic height. In case of empty card (no question, no answer) the height is minimum, this makes it hard to even select such a card.
UITableViewAutomaticDimension: table view chooses appropriate height based on your cell's content.
UITableView.rowHeight: is ignored as soon as the delegate implements the tableView:heightForRowAtIndexPath: method. The former is more efficient if all cells have same height.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
UITableViewAutomaticDimension: table view chooses appropriate height based on your cell's content.
UITableView.rowHeight: is ignored as soon as the delegate implements the tableView:heightForRowAtIndexPath: method. The former is more efficient if all cells have same height.
Fixed in commit 0298d48