Initializer

init(timeInterval:since:)

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

Declaration 宣言

convenience init(timeInterval secsToBeAdded: TimeInterval, 
           since date: Date)

Parameters パラメータ

seconds

The number of seconds to add to refDate. A negative value means the receiver will be earlier than refDate. refDateに加える秒数。負の値は、レシーバがrefDateより早くなることを意味します。

refDate

The reference date. 基準日。

Return Value 戻り値

An NSDate object initialized relative to refDate by seconds seconds. あるNSDateオブジェクト、refDateに相対してseconds秒の差で初期化されます。

See Also 参照

Initializing a Date 日付を初期化する