Initializer

init(timeIntervalSinceReferenceDate:)

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

Declaration 宣言

init(timeIntervalSinceReferenceDate ti: TimeInterval)

Parameters パラメータ

seconds

The number of seconds to add to the reference date (00:00:00 UTC on 1 January 2001). A negative value means the receiver will be earlier than the reference date. この秒数を基準日(1 January 2001での00:00:00 UTC)に加えることになります。負の値は、レシーバが基準日より早くなることを意味します。

Return Value 戻り値

An NSDate object initialized relative to the absolute reference date by seconds seconds. あるNSDateオブジェクト、絶対基準日に相対してseconds秒の差で初期化されます。

Discussion 議論

This method is a designated initializer for the NSDate class and is declared primarily for the use of subclasses of NSDate. When you subclass NSDate to create a concrete date class, you must override this method. このメソッドは、NSDateクラスの指定イニシャライザです、そして主としてNSDateのサブクラスの利用のために宣言されます。あなたがNSDateのサブクラスを作ることである具体的な日付クラスを作成する場合、あなたはこのメソッドをオーバーライドしなければならない。

See Also 参照

Initializing a Date 日付を初期化する

Related Documentation 関連文書