核心数据:是否可以在谓词中使用标量作为转换后的NSValues?

时间:2014-02-14 16:18:14

标签: xcode core-data nspredicate

如果您有结构,例如:

typedef struct _intCoord {
    int x;
    int y;
} intCoord;
你存储为NSValue的

,如何在谓词中使用结果值?

e.g。如果我将组件存储为NSNumbers * xNum,* yNum等属性,则可以使用以下内容:

NSPredicate *predicate = [NSPredicate predicateWithFormat:
  @"(xNum = %i) AND (yNum <= %i)", self.currentX, self.maxY];

是否可以编写谓词以使用NSValue属性执行此类过滤?

0 个答案:

没有答案