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

date(era:yearForWeekOfYear:weekOfYear:weekday:hour:minute:second:nanosecond:)

Returns a new date created with the given components base on a week-of-year value. 年内週番号値に基づき、ある与えられた構成要素それらで作成される新しい日付を返します。

Declaration 宣言

func date(era eraValue: Int, 
yearForWeekOfYear yearValue: Int, 
weekOfYear weekValue: Int, 
  weekday weekdayValue: Int, 
     hour hourValue: Int, 
   minute minuteValue: Int, 
   second secondValue: Int, 
nanosecond nanosecondValue: Int) -> Date?

Parameters パラメータ

eraValue

The value for the era component. 紀年構成要素に対する値。

yearValue

The value for the year component. 年構成要素に対する値。

weekValue

The value for the week-of-year component. 年内週番号構成要素に対する値。

weekdayValue

The value to use as the weekday. 曜日として使われる値。

hourValue

The value for the hour component. 時間構成要素に対する値。

minuteValue

The value for the minute component. 分構成要素に対する値。

secondValue

The value for the second component. 秒構成要素に対する値。

nanosecondValue

The value for the nanosecond component. ナノ秒構成要素に対する値。

Return Value 戻り値

A new NSDate instance created with the given components based on a week-of-year calculation, or nil if the components do not correspond to a valid date. 与えられたそれら構成要素で作成され年内週番号計算に基づく新しいNSDateインスタンス、またはそれら構成要素が有効な日付に相当しないならばnil

See Also 参照

Calculating Dates 日付を計算する