・編集不可にする。
・リンクとして認識させる
・色の指定(デフォルトは青)
Cbjective-C
// 編集不可にする
textView.editable = false
// textViewのtextにURLの文字列があればリンクとして認識する
textView.dataDetectorTypes = UIDataDetectorTypeLink;
// リンクの色を指定する
textView.linkTextAttributes = @{NSForegroundColorAttributeName: [UIColor blueColor]};
Swift
// 編集不可にする
textView.editable = false
// textViewのtextにURLの文字列があればリンクとして認識する
textView.dataDetectorTypes = .Link
// リンクの色を指定する
textView.linkTextAttributes = [NSForegroundColorAttributeName:UIColor.blueColor()]