What I want to achieve is to have UILabel
underlined but in a specific way.
I know how to make UILabel
underlined, but since this is going to be a dynamic text, I don't know how long it will be.
Anytime the label enters a new line, I'd like to make the underlining align with the one above regardless of the text length.
I sketched it up to give you a better notion of what I actually try to achieve:
What is your opinion, how to approach such problem?
Should I add the white line as UIView
anytime text skips to another line?
Or maybe add some whitespace in code when the text lengths is shorter than bounds of current line?