Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Sql 中有日期函数,但在 CoreData 中只有“<”、“=”和类似的。如果我将 Date 存储为表示时间戳的 intvalue,我也可以使用“-”、“+”等。除了转换之外,将日期存储为 NSDate 还有一个好处吗?我不认为,但我不确定。
谢谢你
不,没有缺点。事实上,如果您在生成 NSManagedObject 子类时选择“使用原始数据类型的标量属性”,它会为您将 NSDate 转换为 NSTimeInterval (double)。