UITextView link detection in iOS 7

后端 未结 17 1309
再見小時候
再見小時候 2020-12-01 10:22

I have a UITextView which is managed via Interface Builder. As data detection I have \"Links\" checked. In iOS 6 everything is working fine and links are highli

17条回答
  •  栀梦
    栀梦 (楼主)
    2020-12-01 10:45

    While this thread is old, I didn’t see an answer that worked for me with Swift, so here goes for Swift 2.2

    textView.dataDetectorTypes = UIDataDetectorTypes.Link
    textView.selectable = true
    

提交回复
热议问题