我需要使用具有圓函數的NSPredicate。 例如:帶圓函數的NSpredicate
Child* child1 = [self myFirstChild];
NSPredicate *predicate = [NSPredicate predicateWithString:@"round(SELF.age) > 12"];
BOOL twelveOrAlmostTwelve = [predicate evaluateWithObject:child1];
沒有在文檔中沒有這樣的功能: http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Predicates/Predicates.pdf
任何想法? 謝謝
有沒有'輪()'函數,但有*有*'地板()'和'小區()'功能。內建函數列表位於['NSExpression'文檔](http://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSExpression_Class/Reference/NSExpression.html#//apple_ref/DOC/UID/TP30001190-CJBDJCJE)。 –