I have a custom UITableViewCell
that has the following elements:
- UIImageView
- UILabel
- UILabel
I want the UIImageView
on the left, and the 2 UILabel
objects stacked one on the other on the right side. Here's what it looks like in the storyboard:
I've got a horizontal UIStackView
. Inside it is the UIImageView
and a vertical UIStackView
.
Here's what the hierarchy looks like:
For some reason, I'm getting warnings on ambiguity for the title and description labels. I've tried to tweak them again and again but I couldn't get it quite right. Any advice is appreciated.