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

date(bySettingHour:minute:second:of:options:)

Creates a new date calculated with the given time. 与えられた時間で計算される新しい日付を作成します。

Declaration 宣言

func date(bySettingHour h: Int, 
   minute m: Int, 
   second s: Int, 
       of date: Date, 
  options opts: NSCalendar.Options = []) -> Date?

Parameters パラメータ

h

The hour value. 時間の値。

m

The minute value. 分の値。

s

The second value. 秒の値。

date

The date to use to perform the calculation. 計算を実行するために使う日付。

opts

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

Return Value 戻り値

A new NSDate instance representing the date calculated by setting the given hour, minute, and second, to a given time. If no such time exists for the specified components, the next available date is returned, which may be on a different calendar day. 新しいNSDateインスタンスで、それはこの与えられた時間、分、そして秒をある与えられた時間に対して配置するによって計算される日付を表しています。そのような時間が指定された構成要素それらに対して存在しないならば、次の利用可能な日付が返されます、それは異なる暦日であるかもしれません。

Discussion 議論

You can use this method to calculate a date at a different time of a particular calendar day. あなたはこのメソッドを使って、特定の暦日の異なる時間を算出できます。

See Also 参照

Calculating Dates 日付を計算する