I'm not sure why, but in my project the didSelectLink delegate method is never called. It seems that the root cause is that touchesEnded is also never called inside of NantesLabel, only touchesBegan and touchesCancelled.
In my case the label is used within a UIStackView within a UITableViewCell, auto-sizing everything. I set myLabel.attributedText to an instance of NSAttributedString with the .foregroundColor and .font attributes set, and links are added the old-fashioned way via NSMutableAttributedString's addAttribute. The links are styled just fine (via linkAttributes), so they are definitely recognized. Also within touchesBegan I can see that it does find the link and sets activeLink. But.. touchesEnded is never called, so handleLinkTapped is also never executed.
I'm not sure how easy it's going to be to make a minimum reproducible project 😰
But I'll see what I can do!
I'm not sure why, but in my project the
didSelectLinkdelegate method is never called. It seems that the root cause is thattouchesEndedis also never called inside of NantesLabel, onlytouchesBeganandtouchesCancelled.In my case the label is used within a UIStackView within a UITableViewCell, auto-sizing everything. I set
myLabel.attributedTextto an instance of NSAttributedString with the.foregroundColorand.fontattributes set, and links are added the old-fashioned way viaNSMutableAttributedString'saddAttribute. The links are styled just fine (vialinkAttributes), so they are definitely recognized. Also withintouchesBeganI can see that it does find the link and setsactiveLink. But..touchesEndedis never called, sohandleLinkTappedis also never executed.I'm not sure how easy it's going to be to make a minimum reproducible project 😰
But I'll see what I can do!