2016-01-24 140 views
0

所以在我的應用程序中,我添加了ActiveLabel,並且我想在我的TableView上使用它。更改TableView文本標籤類型

上的TableView所以集文字,我可以做到這一點:

cell.textLabel?.text = commentsArray[commentsArray.count - 1 - indexPath.row] 

或本:

cell.textLabel?.text = commentsArray[commentsArray.count - 1 - indexPath.row] as? String 

但我怎麼能更改從的UILabel的cell.textLabel.text到ActiveLabel?

+1

它不起作用,UILabel不能是一個ActiveLabel。看看他們在他們的例子中是如何做到的,他們添加了一個ActiveLabel作爲子視圖:https://github.com/optonaut/ActiveLabel.swift/blob/master/ActiveLabelDemo/ViewController.swift – Moritz

回答

0

您需要create custom UITableViewCell並插入ActiveLabel作爲子視圖。 (注意:如果您在storyboard/XIB中創建UITableViewCell,請確保您已爲標籤選擇適當的類)。