我尝试使用swift中的NSLabel
将日期传递给stringFromDate
,但timerString
并未传递任何内容并赢得了#{1}}。打印到控制台。
为什么会发生这种情况的任何想法?
func printGameTime(timer: NSDate)
{
let timeFormatter = NSDateFormatter()
timeFormatter.timeStyle = .MediumStyle
var timerString = timeFormatter.stringFromDate(timer)
print("Printing: \(timerString)")
}