1

我正在objective cXCode 中开发聊天应用程序。因此,当聊天消息计数达到 100 时,我想删除parse.comrowstablein database。那么我怎样才能以编程方式做到这一点?从代码中我使用PFQuery对象插入data如下。

 // Initialize parse query with classname 'chatroom'
PFQuery *query = [PFQuery queryWithClassName:className];

chatData  = [[NSMutableArray alloc] init];
NSArray *array = [NSArray arrayWithObjects:Sender,receiver,nil];

// set query to retrieve table data which contain specific senderId and recieverId from parse table 'chatroom'
[query whereKey:SET_SENDER containedIn:array];
[query whereKey:SET_RECEIVER containedIn:array];

任何帮助将不胜感激。

4

1 回答 1

1

我正在使用 deleteInBackground 属性从 Parse Table 中删除记录。

例如。deleteObjectId 是定义的 Parse 对象。

[deleteObjectId deleteInBackground];  
于 2013-06-06T10:38:17.347 回答