ios11 - Xcode 9 UITextView links no longer clickable -


prior xcode 9 , ios 11 had uitextview within uitableviewcell contained multiple links. each link worked expected, since upgrading ios 11 , xcode 9, links no longer work.

the uitextview doesn't appear recognise touch interaction func textview(_ textview: uitextview, shouldinteractwith url: url, in characterrange: nsrange, interaction: uitextiteminteraction) -> bool never firing.

has else found same problem after upgrading?

turns out there wasn't problem after all. changes in way uitextview responds touches in ios11 means clicking links requires more of press rather tap worked in ios10. think may fact in ios11 can press links , drag them displays details of url. firmer press needed uitextview register link being tapped.


Comments

Popular posts from this blog

python - Alternative to referencing variable before assignment -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -