如何将UILabel转换为字符串?

时间:2015-11-10 16:25:34

标签: ios swift

我正在尝试将UILabel转换为字符串,但它总是失败。我怎么会施展它? friendname是UILabel,friendusername是字符串。

override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
    if (segue.identifier == "friendsSongs"){

        let nextViewOBJ = segue.destinationViewController as! FriendsMusic
        nextViewOBJ.friendusername = friendname as! String
    }
}

2 个答案:

答案 0 :(得分:6)

在UILabel上使用text属性:

   V1 V2     V3 
1  a  TRUE   (1, 2, 3)
2  b  FALSE  (3, 4, 5)
3  c  TRUE   (5, 6, 7)

您无法将UILabel强制转换为字符串 - 但您可以找到UILabel的文本 。这就是你想要做的事情。

答案 1 :(得分:4)

您不想将UILabel转换为字符串,您想要访问其文本属性:

nextViewOBJ.friendusername = friendname.text