Initializer

init(timeIntervalSince1970:)

Returns a date object initialized relative to 00:00:00 UTC on 1 January 1970 by a given number of seconds. 00:00:00 UTC 1 January 1970に相対してある与えられた秒数の差で初期化される日付オブジェクトを返します。

Declaration 宣言

convenience init(timeIntervalSince1970 secs: TimeInterval)

Parameters パラメータ

seconds

The number of seconds from the reference date (00:00:00 UTC on 1 January 1970) for the new date. Use a negative argument to specify a date and time before the reference date. 新しい日付に対する基準日(1 January 1970での00:00:00 UTC)からの秒数。負の引数を使うことで基準日の前の日付と時刻を指定してください。

Return Value 戻り値

An NSDate object set to seconds seconds from the reference date. あるNSDateオブジェクト、基準日からseconds秒に設定されます。

Discussion 議論

This method is useful for creating NSDate objects from time_t values returned by BSD system functions. このメソッドは、NSDateオブジェクトをBSDシステム関数によって返されるtime_t値から作成するのに役立ちます。

See Also 参照

Initializing a Date 日付を初期化する