+ dateWithNaturalLanguageString:
+ dateWithNaturalLanguageString:locale:
- initWithString:
- addTimeInterval:
- dateWithCalendarFormat:timeZone:
- descriptionWithCalendarFormat:timeZone:locale:
YYYY-MM-DD HH:MM:SS ±HHMM
).
国際化文字列表現形式(YYYY-MM-DD HH:MM:SS ±HHMM
)で与えられる文字列によって指定される日付と時刻の値で日付オブジェクトを作成して返します。
Availability 有効性
Technology
+ (id)dateWithString:(NSString
*)aString;
aString
A string that specifies a date and time value in the international string representation format—YYYY-MM-DD HH:
, where ±HHMM
is a time zone offset in hours and minutes from UTC (for example, “2001-03-24 10:
”).
ある文字列、それは国際化文字列表現形式で日付と時刻の値を指定します — YYYY-MM-DD HH:
、そこで±HHMM
はUTCからの時間と分でのタイムゾーンオフセットです(例えぱ、“2001-03-24 10:
”)。
You must specify all fields of the format string, including the time zone offset, which must have a plus or minus sign prefix. あなたは、書式設定文字列のすべてのフィールドを指定しなければなりません、タイムゾーンオフセットを含みます、それはプラスまたはマイナス符号接頭辞を持たなければなりません。
An NSDate
object with a date and time value specified by a
.
あるNSDate
オブジェクトで、a
によって指定される日付と時刻の値を持ちます。
To create a date object from a string, you should typically use a date formatter object instead (see NSDate
and Data Formatting Guide).
日付オブジェクトを文字列から作成するには、あなたは通常は日付フォーマッタオブジェクトを代わりに使うべきです(NSDate
とData Formatting Guideを見てください)。
+ dateWithNaturalLanguageString:
+ dateWithNaturalLanguageString:locale:
- initWithString:
- addTimeInterval:
- dateWithCalendarFormat:timeZone:
- descriptionWithCalendarFormat:timeZone:locale: