ios – NSPredicate问题超过平等

前端之家收集整理的这篇文章主要介绍了ios – NSPredicate问题超过平等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的NSPredicate,但没有给出正确的结果
NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"SELF.data.squareFootage >= %@",filterSquareFootage];
filteredArray = [[filteredArray filteredArrayUsingPredicate:resultPredicate] mutableCopy];

奇怪的是,这适用于所有6000> = 250,7000> = 250,8000> = 6000.但是,只要squareFootage == 10000,10000> =任何较小值的谓词都是false.
注意:10000 for squareFootage是使用UiSlider获取的最大值.如果我将值减小到任何较小的值,则谓词结果为true

我在这里遗漏了什么并使用谓词不正确吗?

解决方法

我假设您的属性存储为字符串而不是数字,因此
将值作为字符串进行比较:
"10000" < "250" < "6000"

使用NSNumber而不是NSString(或者某些标量类型作为NSInteger)应该解决问题.

如果无法更改squareFootage属性的数据类型,则以下内容
谓词应该有效:

[NSPredicate predicateWithFormat:@"SELF.data.squareFootage.intValue >= %d",[filterSquareFootage intValue]]
原文链接:https://www.f2er.com/iOS/335438.html

猜你在找的iOS相关文章