Instance Method インスタンスメソッド

date(era:year:month:day:hour:minute:second:nanosecond:)

Returns a date created with the given components. 与えられた構成要素それらで作成される日付を返します。

Declaration 宣言

func date(era eraValue: Int, 
     year yearValue: Int, 
    month monthValue: Int, 
      day dayValue: Int, 
     hour hourValue: Int, 
   minute minuteValue: Int, 
   second secondValue: Int, 
nanosecond nanosecondValue: Int) -> Date?

Parameters パラメータ

eraValue

The value to set for the era. 紀年に対して設定する値。

yearValue

The value to set for the year. 年に対して設定する値。

monthValue

The value to set for the month. 月に対して設定する値。

dayValue

The value to set for the day. 日にちに対して設定する値。

hourValue

The value to set for the hour. 時間に対して設定する値。

minuteValue

The value to set for the minute. 分に対して設定する値。

secondValue

The value to set for the second. 秒に対して設定する値。

nanosecondValue

The value to set for the nanosecond. ナノ秒に対して設定する値。

Return Value 戻り値

A new NSDate instance created with the given components, or nil if the components do not correspond to a valid date. 与えられたそれら構成要素で作成された新しいNSDateインスタンス、またはそれら構成要素が有効な日付に相当しないならばnil

See Also 参照

Calculating Dates 日付を計算する