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

nextDate(after:matchingHour:minute:second:options:)

Returns the next date after a given date that matches the given hour, minute, and second, component values. 与えられた日付の後の与えられた時間、分、そして秒、構成要素値に合致する次の日付を返します。

Declaration 宣言

func nextDate(after date: Date, 
 matchingHour hourValue: Int, 
       minute minuteValue: Int, 
       second secondValue: Int, 
      options: NSCalendar.Options = []) -> Date?

Parameters パラメータ

date

The date for which to perform the calculation. それに対して計算を実行することになる日付。

hourValue

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

minuteValue

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

secondValue

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

options オプション

Options for the calculation. For possible values, see NSCalendar.Options. 計算に対するオプション。可能な値として、NSCalendar.Optionsを見てください。

Return Value 戻り値

A new NSDate object. 新しいNSDateオブジェクト。

See Also 参照

Scanning Dates 日付を走査する