I have standart UITextView
. When I set in the UITextView
text like
textView.text = "(614)594-2470\n(614)594-2231\nwww.rclexpressllc.com\n\n"
I get this on UI (wrong link style)
If I set in the UITextView
text like
textView.text = "tel: (614)594-2470 (call up to 20-00)\nfax: (614)594-2231 (accepts 24/7)\nsite: www.rclexpressllc.com (our awesome web-page)\n\n"
I get this on UI (true link style)
with what such behavior can be connected?
how to make UITextView
work correctly?