Enumeration
列挙
NSCalendarUnit
Calendrical units such as year, month, day and hour.
カレンダーに関する単位、例えば年、月、日にちと時刻。
Declaration
宣言
typedef enum NSCalendarUnit : NSUInteger
{
...
} NSCalendarUnit;
Overview
概要
Calendar units may be used as a bit mask to specify a combination of units. Values in this enumeration are equal to the corresponding constants in CFCalendarUnit
.
カレンダー単位は、ビットマスクとして使われて、単位の組み合わせを指定するかもしれません。この列挙の中の値は、CFCalendarUnit
の中の対応する定数と等しいです。
Topics
話題
Specifying Years and Months
年と月を指定する
Specifying Weeks and Days
週と日にちを指定する
Specifying Hours, Minutes, and Seconds
時間、分、そして秒を指定する
Specifying Calendars and Time Zones
カレンダーとタイムゾーンを指定する
Deprecated
非推奨
NSQuarterCalendarUnit
Specifies the quarter of the calendar as a kCFCalendarUnitSecond
. In macOS 10.6 and earlier this was defined as equal to kCFCalendarUnitQuarter
. In macOS 10.7 and later it is defined as (1 << 20)
.
カレンダーの4半期をkCFCalendarUnitSecond
として指定します。macOS 10.6以前ではこのメソッドはkCFCalendarUnitQuarter
に等しいとして定義されました。macOS 10.7以降ではそれは(1 << 20)
として定義されます。
Deprecated
非推奨
NSYearForWeekOfYearCalendarUnit
Specifies the year when the calendar is being interpreted as a week-based calendar.
カレンダーが週基盤のカレンダーとして解釈されている場合に年を指定します。
Deprecated
非推奨
NSTimeZoneCalendarUnit
Specifies the time zone of the calendar as an NSTimeZone
.
カレンダーのタイムゾーンをNSTimeZone
として指定します。
Deprecated
非推奨
See Also
参照
Getting Calendar Information
カレンダー情報を取得する
firstWeekday
The index of the first weekday of the receiver.
レシーバの最初の曜日のインデックス。
locale
The locale of the receiver.
レシーバのロケール。
timeZone
The time zone for the calendar.
カレンダーに対するタイムゾーン。
- maximumRangeOfUnit:
Returns the maximum range limits of the values that a given unit can take on.
与えられた単位が取ることができる値の最大限の範囲限界を返します。
- minimumRangeOfUnit:
Returns the minimum range limits of the values that a given unit can take on.
与えられた単位が取ることができる値の最小限の範囲限界を返します。
- ordinalityOfUnit:inUnit:forDate:
Returns, for a given absolute time, the ordinal number of a smaller calendar unit (such as a day) within a specified larger calendar unit (such as a week).
与えられた絶対時間に対して、指定されたより大きいカレンダー単位(例えば週)内のより小さいカレンダー単位(例えば日にち)の順序数を返します。
- rangeOfUnit:inUnit:forDate:
Returns the range of absolute time values that a smaller calendar unit (such as a day) can take on in a larger calendar unit (such as a month) that includes a specified absolute time.
指定された絶対時間を含むより大きいカレンダー単位(例えば月)の中で、より小さいカレンダー単位(例えば日にち)が取ることができる絶対時間値からなる範囲を返します。
- rangeOfWeekendStartDate:interval:containingDate:
Returns whether a given date falls within a weekend period, and if so, returns by reference the start date and time interval of the weekend range.
与えられた日付がある週末期間の範囲に収まるかどうかを返します、そしてもしそうならば、参照によってその週末範囲の開始日付と時間間隔を返します。