Mac OS X 中缺少 NSEntityDescription setCompoundIndexes

Posted

技术标签:

【中文标题】Mac OS X 中缺少 NSEntityDescription setCompoundIndexes【英文标题】:NSEntityDescription setCompoundIndexes missing in Mac OS X 【发布时间】:2011-12-14 13:21:33 【问题描述】:

我缺少方法

复合索引 设置复合索引

在 Mac OS X 10.7 SDK 的 NSEntityDescription 中。但是,它在 ios5.0 SDK 中可用。

另一方面,Xcode 非常了解复合索引,即使在 Mac OS X 下也是如此。它会像这样创建 xcdatamodel:

<entity name="OHLCV" parentEntity="Sample" syncable="YES">
    <attribute name="close" attributeType="Double" defaultValueString="0.0" syncable="YES"/>
    <attribute name="high" attributeType="Double" defaultValueString="0.0" syncable="YES"/>
    <attribute name="low" attributeType="Double" defaultValueString="0.0" syncable="YES"/>
    <attribute name="open" attributeType="Double" defaultValueString="0.0" syncable="YES"/>
    <attribute name="volume" attributeType="Integer 64" defaultValueString="0" syncable="YES"/>
    <compoundIndexes>
        <compoundIndex>
            <index value="open"/>
            <index value="close"/>
        </compoundIndex>
    </compoundIndexes>
</entity>

会不会是 Apple 只是忘记在 Mac API 中包含方法声明?

这里是文档:

Mac:http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/CoreDataFramework/Classes/NSEntityDescription_Class/NSEntityDescription.html(这里缺少管理复合索引的部分)

iOS:http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/CoreDataFramework/Classes/NSEntityDescription_Class/NSEntityDescription.html

【问题讨论】:

【参考方案1】:

我已经设法通过自己声明来调用未声明的方法(需要声明以便编译器接受它):

@interface NSEntityDescription ()
- (void)setCompoundIndexes:(NSArray*)anArray;
@end

稍后在我的代码中,我可以在其中以编程方式创建我的 NSManagedObjectModel:

[entity setCompoundIndexes:
    [NSArray arrayWithObjects:[NSArray arrayWithObjects:@"open", @"close", nil], nil]
];

我认为 Apple 只是忘记将方法放入 CoreData API。该功能肯定在 Mac OS X 上也可用,否则 Xcode 将不会在 xcdatamodel 建模工具中提供 UI。

我可以进一步确认上述语句是有效的,因为我在sqlite3数据库中找到了CoreData创建的对应复合索引:

CREATE INDEX ZOHLCV_ZOPEN_ZCLOSE ON ZOHLV (ZOPEN, ZCLOSE);

【讨论】:

以上是关于Mac OS X 中缺少 NSEntityDescription setCompoundIndexes的主要内容,如果未能解决你的问题,请参考以下文章

使用 Mac OS X 10.8.5 Xcode 5.0.2 配置错误:clang:错误:缺少“-V”的参数(预期 1 个值)clang:错误:没有输入文件

Mac OS X 自带PHP环境gd库安装扩展freetype(Call to undefined function imagettftext())

导致 cpp(C 预处理器)删除 Mac OS X 上的 C++ 注释

为啥在 Mac OS 上安装 Nokogiri 失败并缺少 libiconv?

Qt Mac OS 应用程序部署缺少框架

Mysql Workbench Mac OS 缺少管理工具和数据导入/导出