-1
我想將一個UILabel轉換爲字符串,但它總是失敗。我還會怎樣施展它? friendname
是一個UILabel,而friendusername
是一個字符串。如何將UILabel轉換爲字符串?
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if (segue.identifier == "friendsSongs"){
let nextViewOBJ = segue.destinationViewController as! FriendsMusic
nextViewOBJ.friendusername = friendname as! String
}
}
首先閱讀'UILabel'的文檔。 – rmaddy