我正在使用 iPhone 消息传递应用程序。上午using coredata to store the messages(Sent by the user and received from the webservice), username, date and time
。我想保存一次用户名并将发送/接收的消息和日期添加到相应的用户名。
像这样:
No Name Date ReceivedMessage SendMessage
1 Gopinath 27 june, 12.01pm Hi ----
27 june, 12.02pm ---- Hello
2 ABCD 26 june, 1.01pm Hi ----
26 june, 2.02pm ---- Hello
27 june, 8pm Hi Gopi ----
收到的消息应该在我从服务接收时存储,而 Sendmessage 将在用户撰写和发送消息时存储。
谁能帮助我如何在我的项目中使用 CoreData 存储这样的数据?提前致谢。