0
我遇到NSDate問題。在「println」中寫入當前日期很簡單。我如何將當前日期作爲標籤?這是我的代碼:關於當前日期的信息作爲標籤
var timer = NSTimer()
override func viewDidLoad() {
super.viewDidLoad()
timer = NSTimer.scheduledTimerWithTimeInterval(1,target:self, selector: Selector("update"),userInfo: nil, repeats :true)
let date = NSDate()
println(NSDate)
}
蘋果擁有[數據格式指南(https://developer.apple。 com/library/ios/documentation/Cocoa/Conceptual/DataFormatting/DataFormatting.html),並且堆棧溢出對於「NSDate to string」的命中次數> 4000。你嘗試了什麼,你卡在哪裏? – 2014-10-28 14:27:59
我不知道如何連接當前時間和標籤。我知道,我必須改變NSDate字符串,我看到測試代碼,但它不適合我。 – Tannis 2014-10-28 14:42:55
其實我解決了我的問題:)我使用類似這樣的label1.text = toPass2和 toPass2 =「\(NSDate())」 – Tannis 2014-10-28 15:06:23