可選的價值我想這個代碼意外地發現零而展開的迅速
let secondView = SecondViewController(nibName: "secondView", bundle: nil)
secondView.secondViewLabel.text = self.TextBox.text
navigationController?.pushViewController(secondView, animated: true)
我試圖從文本框中的值傳遞給一個標籤,在未來視圖controller.But我得到一個錯誤
我也試着將文本框的值複製到第二個視圖控制器中聲明的sting中,該控制器也返回nil。
let secondView = SecondViewController(nibName: "secondView", bundle: nil)
secondView.toPass = self.TextBox.text
navigationController?.pushViewController(secondView, animated: true)
println(secondView.toPass) // i get the string printed here
在第二視圖控制器
var toPass:String!
鑑於沒有負載
secondLabel.text = toPass
println(toPass) // i get the string printed nil
幫助我,大家好我是新來的迅速
什麼是TextBox?它是什麼類型?什麼是TextBox.text的類型? – JohnVanDijk 2014-09-30 06:17:31
@IBOutlet weak var TextBox:UITextField! – vishnuvarthan 2014-09-30 06:32:05