I'm trying to add vertical lines, between labels inside a stack view all programatically.
The desired finish will be something like this image:
I can add the labels, all with the desired spacing; I can add horizontal lines but I can't figure out how to add those separator vertical lines in-between.
I'd like to do it something like this:
let stackView = UIStackView(arrangedSubviews: [label1, verticalLine, label2, verticalLine, label3])
Any hint?
Thanks




