4
我有這樣的代碼效果很好,但我不知道這是否是調用stringWithFormat正確的方式,因爲在文檔%d是int和我傳遞一個長:這是調用stringWithFormat時長時間使用的正確說明符嗎?
long seconds = (long)[[NSDate date]timeIntervalSince1970];
NSString *unixTimestamp = [NSString stringWithFormat:@"date=%d", seconds];
謝謝提前!
http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html –