- allowsNaturalLanguage
lenient
Availability 有効性
Technology
@property BOOL doesRelativeDateFormatting;
YES
if the receiver uses relative date formatting, otherwise NO
.
YES
、もしレシーバが相対日付書式設定を使うならば、そうでなけれぱNO
。
If a date formatter uses relative date formatting, where possible it replaces the date component of its output with a phrase—such as “today” or “tomorrow”—that indicates a relative date. The available phrases depend on the locale for the date formatter; whereas, for dates in the future, English may only allow “tomorrow,” French may allow “the day after the day after tomorrow,” as illustrated in the following example. 日付フォーマッタが相対日付書式設定を使うならば、そこにおいてそれの出力の日付構成要素を相対日付を指し示す語句 — 例えば “today” または “tomorrow” など — と置き換えることが可能です。利用可能な語句は、日付フォーマッタに対するロケールに依存します;という次第で、未来の日付に対して、English は “tomorrow” だけが可能でしょう、French は “the day after the day after tomorrow” を可能とするでしょう、以下の例において例示されるように。
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
dateFormatter.timeStyle = NSDateFormatterNoStyle;
dateFormatter.dateStyle = NSDateFormatterMediumStyle;
NSLocale *frLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"fr_FR"];
dateFormatter.locale = frLocale;
dateFormatter.doesRelativeDateFormatting = YES;
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:60*60*24*2];
NSString *dateString = [dateFormatter stringFromDate:date];
NSLog(@"dateString: %@", dateString);
// Output
// dateString: après-demain
- allowsNaturalLanguage
lenient