这必须是一个常见问题,我在 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
但这对于大量消息/对话来说并不是一个好的解决方案。