要實現點擊 UILabel ,UILabel.text 就加 1
就要用到型態轉換
今天只針對 UILabel.text 加數字 10
testLabel.text = String(Int(testLabel.text!)! + 10)
text: String ,所以要相加要先轉成 Int
加完要顯示,就要轉回 String ,否則會出 ! error
要實現點擊 UILabel ,UILabel.text 就加 1
就要用到型態轉換
今天只針對 UILabel.text 加數字 10
testLabel.text = String(Int(testLabel.text!)! + 10)
text: String ,所以要相加要先轉成 Int
加完要顯示,就要轉回 String ,否則會出 ! error
0 意見:
張貼留言