I have a UITableview
with a custom cell, using universal/unified storyboards. For the iPad, I would like the row height to be 120, and be 70 for all other size classes.
I don't see a direct way to change the row height in storyboard based on size classes (only 1 row height for all size classes).
The main reason I want to do this is to accommodate a bigger UIImageView
for the ipad class size.
For any height any width size class: UIImageView
height is 60, pinned to the top and bottom at 5 each.
For regular height and regular width size class: UIImageIvew
height is 100, pinned to the top and bottom at 10 each.
Since I can only do 1 row height, adding these contraints based on size class causes warnings/errors, because these constraints are incompatible with only 1 row height.
How would I make this work with the limitation of only 1 row height for differing size classes?