I am using default UItableViewCell
to display text. Now lable of that cell is set to multiline as
defaultCell.textLabel?.numberOfLines = 0
And I have multiple cells containting multiline text. And I want to add links in that text something like below
This is multiLine Text which will lead you to the StackOverFlow. And you will find something there.
I searched and found solutions like using UITextView
instead if UILable
etc.
But I want to do it with a UILable
. Thanks for your help.