NSEqualToComparison
Binary comparison operator that results in
YES
if the two objects are equal.
バイナリ比較演算子、それはYES
という結果になります、もし2つのオブジェクトが等しいならば。
NSLessThanOrEqualToComparison
Binary comparison operator that results in
YES
if the value of the test object is equal to or less than the value of the other object.
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値と等しいまたはより少ないならば。
NSLessThanComparison
Binary comparison operator that results in
YES
if the value of the test object is less than the value of the other object.
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より少ないならば。
NSGreaterThanOrEqualToComparison
Binary comparison operator that results in
YES
if the value of the test object is greater than or equal to the value of the other object.
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より大きいまたは等しいならば。
NSGreaterThanComparison
Binary comparison operator that results in
YES
if the value of the test object is greater than the value of the other object.
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より大きいならば。
NSBeginsWithComparison
Binary containment operator that results in
YES
if the test object is a list or string that matches the beginning of the other object (which is also a list or string).
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)の始まりに合致するものならば。
NSEndsWithComparison
Binary containment operator that results in
YES
if the test object is a list or string that matches the end of the other object (which is also a list or string).
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)の終わりに合致するものならば。
NSContainsComparison
Binary containment operator that results in
YES
if the test object is a list or string that matches the other object (which is also a list or string) at any location.
バイナリ比較演算子、それはYES
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)にあらゆる位置で合致するものならば。