Type Method
型メソッド
dateWithTimeIntervalSince1970:
Creates and returns a date object set to the given number of seconds from 00:00:00 UTC on 1 January 1970.
1 January 1970での00:00:00 UTCからある与えられた秒数を設定されたある日付を作成して返します。
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
参照
Creating a Date
日付の作成
+ date
Creates and returns a new date object set to the current date and time.
現在の日付と時刻に設定される新しい日付オブジェクトを作成して返します。
+ dateWithTimeIntervalSinceNow:
Creates and returns a date object set to a given number of seconds from the current date and time.
現在の日付と時刻からある与えられた秒数を設定されたある日付オブジェクトを作成して返します。
+ dateWithTimeInterval:sinceDate:
Creates and returns a date object set to a given number of seconds from the specified date.
この指定された日付からある与えられた秒数を設定されたある日付オブジェクトを作成して返します。
+ dateWithTimeIntervalSinceReferenceDate:
Creates and returns a date object set to a given number of seconds from 00:00:00 UTC on 1 January 2001.
1 January 2001での00:00:00 UTCからある与えられた秒数を設定されたある日付を作成して返します。
Related Documentation
関連文書
timeIntervalSince1970
The interval between the date object and 00:00:00 UTC on 1 January 1970.
この日付オブジェクトと1 January 1970での00:00:00 UTCの間の隔たり。