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

startOfDay(for:)

Returns the first moment of a given date as a date instance. 与えられた日付の最初の瞬間を日付インスタンスとして返します。

Declaration 宣言

func startOfDay(for date: Date) -> Date

Parameters パラメータ

date

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

Return Value 戻り値

An NSDate instance representing the first moment date of the given date. あるNSDateインスタンス、与えられた日付の最初の瞬間の日付を表しています。

Discussion 議論

For example, passing [NSDate date] for the date parameter would give you the start of “today.” 例えば、[NSDate date]dateパラメータに渡すことは、あなたに “今日” の始まりを与えます。

Special Considerations 特別な注意事項

If there were two midnights, this method returns the first. If there was none, it returns the first moment that did exist. 2つの真夜中があったならば、このメソッドは最初のものを返します。全く無かったならば、それは存在した最初の瞬間を返します。

See Also 参照

Scanning Dates 日付を走査する