I do have a UILabel and UITextView above each other, left aligned with Auto Layout. But it looks like this:
What's the best way to correctly align these?
I do have a UILabel and UITextView above each other, left aligned with Auto Layout. But it looks like this:
What's the best way to correctly align these?
The most easy way of doing this is to set content inset directly.
textView.contentInset = UIEdgeInsetsMake(-4,-4,0,0)
And the result looks like