Type Method
型メソッド
dateWithTimeIntervalSinceNow:
Creates and returns a date object set to a given number of seconds from the current date and time.
現在の日付と時刻からある与えられた秒数を設定されたある日付オブジェクトを作成して返します。
Parameters
パラメータ
seconds
The number of seconds from the current date and time for the new date. Use a negative value to specify a date before the current date.
新しい日付に対する現在の日付と時刻からの秒数。負の値を使うことで現在の日付の前の日付と時刻を指定してください。
Return Value
戻り値
An NSDate
object set to seconds
seconds from the current date and time.
あるNSDate
オブジェクト、現在の日付と時刻からseconds
秒に設定されます。
See Also
参照
Creating a Date
日付の作成
+ date
Creates and returns a new date object set to 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からある与えられた秒数を設定されたある日付を作成して返します。
+ 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からある与えられた秒数を設定されたある日付を作成して返します。
Related Documentation
関連文書
- initWithTimeIntervalSinceNow:
Returns a date object initialized relative to the current date and time by a given number of seconds.
現在の日付と時刻に相対してある与えられた秒数の差で初期化される日付オブジェクトを返します。