【Swift】UITableViewCell 中 TTTAttributedLabel 超連接沒法點擊的問題

 

前言html

  還覺得是本身代碼寫的有問題,用法和別的地方都同樣,可是這個是在 UITableViewCell 中使用,另外在 tableHeaderView 中使用也沒用這個問題 —— 使用 TTTAttributedLabel 識別超連接,能識別可是點擊沒有跳轉。git

 

聲明
  歡迎轉載,但請保留文章原始出處:)
    博客園:http://www.cnblogs.com
    農民伯伯: http://over140.cnblogs.comgithub

 

正文swift

  代碼:ide

    在 UITableViewCell 中url

    override func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldReceiveTouch touch: UITouch) -> Bool {
        if let label = touch.view as? TTTAttributedLabel, let link = label.linkAtPoint(touch.locationInView(label))?.result {
            if let url = link.URL where (link.numberOfRanges ?? 0) > 0 {
                if UIApplication.sharedApplication().canOpenURL(url) {
                    UIApplication.sharedApplication().openURL(url)
                }
            }
            return false
        }
        return true
    }

  

  文章:spa

    https://github.com/TTTAttributedLabel/TTTAttributedLabel/issues/266htm

    【Swift】TTTAttributedLabel使用小記blog

相關文章
相關標籤/搜索