1

这必须是一个常见问题,我在 SO 中发现了很多相关问题,但没有一个解决方案。

我有这两个核心数据模型:

@class Message;
@interface Conversation : NSManagedObject
@property (nonatomic, retain) NSString * number;
@property (nonatomic, retain) NSSet *messages;
@property (nonatomic, retain) Message *lastMessage;

@class Conversation;
@interface Message : NSManagedObject
@property (nonatomic, retain) NSString * account;
@property (nonatomic, retain) NSDate * date;
@property (nonatomic, retain) NSString * message;
@property (nonatomic, retain) NSNumber * sentFlag;
@property (nonatomic, retain) NSString * status;
@property (nonatomic, retain) Conversation *conversation;

在我的ConversationListViewController我获取所有由lastMessage.date.
然后ConversationViewController接收 aConversation并列出它的messages

现在我正在lastMessage手动处理,所以每次添加新消息时,在 ConversationViewController 中,我也会更新conversation.lastMessage.
有更好的方法吗?
因为现在,我只有一个地方可以插入/更新一条新消息,但是如果有类似插入/更新触发器之类的东西听起来会更好..

我知道我可以获取所有对话,然后使用 sortdescriptor 对它们进行排序,messages.@max.date但这对于大量消息/对话来说并不是一个好的解决方案。

4

1 回答 1

0

我真的认为没有比设置更优雅或更好的方法了newMessage.conversation.lastMessage = newMessage。Core Data 每次添加或更改实体时都会发布通知,但我不认为观察它们会更容易,然后在每次创建新消息时添加这行代码。

于 2012-04-16T13:18:29.333 回答