I am using the TTTAttributedLabel library to build links in a block of text. I believe TTTAttributedLabel uses UILabel (not easily scrollable) as a base class instead of UITextView which is scrollable. This text view can contain a relatively large amount of text which means that it will need to scroll in some cases. I can't find any help on the library to explain how to configure the TTTAttributedLabel to allow scrolling.
Asked
Active
Viewed 587 times
2 Answers
2
You should set the same code below:
yourTTTAttributedLabel.extendsLinkTouchArea = NO;
It is the best solution. I hope useful.

devasia2112
- 5,844
- 6
- 36
- 56

David
- 21
- 2
0
Simply add the TTTAttributedLabel to a UIScrollView. As a bonus, you can add a constraint to the TTTAttributedLabel to match widths with its parent so it will only scroll vertically.

joelbyler
- 125
- 3