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

startOfDay(for:)

Returns the first moment of a given Date, as a Date. 与えられたDateの最初の瞬間を、Dateとして返します。

Declaration 宣言

func startOfDay(for date: Date) -> Date

Parameters パラメータ

date

The date to search. 検索する日付。

Return Value 戻り値

The first moment of the given date. 与えられた日付の最初の瞬間。

Discussion 議論

For example, pass in Date(), if you want the start of today. If there were two midnights, it returns the first. If there was none, it returns the first moment that did exist. 例えば、Date()を渡してください、あなたが今日の始まりを望むならば。2つの真夜中があるならば、それは最初のものを返します。全く無かったならば、それは存在した最初の瞬間を返します。

See Also 参照

Scanning Dates 日付を走査する