Instance Method インスタンスメソッド

localizedCompare:

Compares the string and a given string using a localized comparison. ローカライズされた比較を使って、文字列をある与えられた文字列と比較します。

Declaration 宣言

- (NSComparisonResult)localizedCompare:(NSString *)string;

Parameters パラメータ

aString

The string with which to compare the receiver. レシーバと比較する文字列。

This value must not be nil. If this value is nil, the behavior is undefined and may change in future versions of macOS. この値は、nilではいけません。この値がnilならば、その挙動は未定義です、そして将来のバージョンのmacOSでは変わるかもしれません。

Return Value 戻り値

Returns an NSComparisonResult value that indicates the lexical ordering. NSOrderedAscending the receiver precedes aString in lexical ordering, NSOrderedSame the receiver and aString are equivalent in lexical value, and NSOrderedDescending if the receiver follows aString. NSComparisonResult値を返します、それは語彙的順序を指し示します。NSOrderedAscending レシーバはaStringに語彙的順序において先行します、NSOrderedSame レシーバとaStringは語彙的値において同等です、そしてNSOrderedDescending もしレシーバがaStringに続くならば。

Discussion 議論

This method uses the current locale. このメソッドは、現在のロケールを使います。

See Also 参照

Identifying and Comparing Strings 文字列を識別および比較する