4
比方說,我有這樣的斷言道:是否有「反向」的NSPredicate
NSPredicate *filter = [NSPredicate predicateWithFormat:@"%K == NO", @"someAttribute"];
我想說明上游反向:
NSPredicate *filter = [NSPredicate predicateWithFormat:@"%K == YES", @"someAttribute"];
有沒有辦法做到這不需要創建一個新的謂詞。
無論如何,純邏輯的'反向'公式應該是'%K!= NO'。 – holex