func dateInterval (of: Calendar.Component, for: Date) -> DateInterval?
Returns the starting time and duration of a given calendar component that contains a given date.
開始時間と与えられたカレンダー構成要素の継続期間を返します、それは与えられた日付を含みます。(開始時間が与えられた日付?)
func dateInterval (of: Calendar.Component, start: inout Date, interval: inout TimeInterval, for: Date) -> Bool
Returns, via two inout parameters, the starting time and duration of a given calendar component that contains a given date.
2つのインアウトパラメータ経由で、開始時間と与えられたカレンダー構成要素の継続期間を返します、それは与えられた日付を含みます。(開始時間が与えられた日付?)
func dateIntervalOfWeekend (containing: Date) -> DateInterval?
Returns a
DateInterval
of the weekend contained by the given date, or nil
if the date is not in a weekend.
与えられた日付によって含まれる、週末のDateInterval
を、またはその日付が週末の中にないならばnil
を返します。
func dateIntervalOfWeekend (containing: Date, start: inout Date, interval: inout TimeInterval) -> Bool
Find the range of the weekend around the given date, returned via two by-reference parameters.
与えられた日付の辺りの週末の範囲を見つけます、2つの参照渡しパラメータ経由で返されます。
func nextWeekend (startingAfter : Date, direction: Calendar.SearchDirection) -> DateInterval?
Returns a
DateInterval
of the next weekend, which starts strictly after the given date.
次の週末のDateInterval
を返します、それは与えられた日付の厳密に後で開始します。
enum Calendar.SearchDirection
The direction in time to search.
時間での検索する方向。