func date(from: DateComponents) -> Date?
Returns a date representing the absolute time calculated from given components.
与えられた構成要素から計算される絶対時間を表している日付を返します。
func date(byAdding : DateComponents, to: Date, options: NSCalendar.Options) -> Date?
Returns a date representing the absolute time calculated by adding given components to a given date.
与えられた構成要素それらをある与えられた日付に加えることによって計算される絶対時間を表している日付を返します。
func date(byAdding : NSCalendar.Unit, value: Int, to: Date, options: NSCalendar.Options) -> Date?
Returns a date representing the absolute time calculated by adding the value of a given component to a given date.
ある与えられた構成要素をある与えられた日付に加えることによって計算される絶対時間を表している日付を返します。
func date(bySettingHour : Int, minute: Int, second: Int, of: Date, options: NSCalendar.Options) -> Date?
Creates a new date calculated with the given time.
与えられた時間で計算される新しい日付を作成します。
func date(bySettingUnit : NSCalendar.Unit, value: Int, of: Date, options: NSCalendar.Options) -> Date?
Returns a new date representing the date calculated by setting a specific component of a given date to a given value, while trying to keep lower components the same.
与えられた日付の指定構成要素をある与えられた値に設定して、一方でより低い構成要素を同じままに保とうとすることによって計算された日付を表している新しい日付を返します。
func date(era: Int, yearForWeekOfYear : Int, weekOfYear : Int, weekday: Int, hour: Int, minute: Int, second: Int, nanosecond: Int) -> Date?
Returns a new date created with the given components base on a week-of-year value.
年内週番号値に基づき、ある与えられた構成要素それらで作成される新しい日付を返します。
func nextWeekendStart (AutoreleasingUnsafeMutablePointer<NSDate?>?, interval: UnsafeMutablePointer<TimeInterval>?, options: NSCalendar.Options, after: Date) -> Bool
Returns by reference the starting date and time interval range of the next weekend period after a given date.
与えられた日付の後の次の週末期間の開始日付と期間範囲を参照によって返します。