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

caseInsensitiveCompare:

Returns the result of invoking compare:options: with NSCaseInsensitiveSearch as the only option. compare:options:を発動する結果を返します、NSCaseInsensitiveSearchを唯一の引数として使います。

Declaration 宣言

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

Parameters パラメータ

aString

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

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 is the equivalent of invoking compare:options: with NSCaseInsensitiveSearch as the only option. このメソッドは、compare:options:を、NSCaseInsensitiveSearchをただ1つのオプションとして発動することと等しいです。

See Also 参照

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