2014-10-07 71 views
1

我有一個名爲「Groups」的類。我希望用戶能夠在應用中創建一個組。是否有一個「addRow」特性與解析,以便它在應用程序中調用方法時在Parse類中創建一個新行?Parse.com以編程方式向課程添加一行

回答

3

如DOC mentionned:

PFObject *newGroup = [PFObject objectWithClassName:@"Groups"]; 
newGroup[@"propertyName"] = propertyValue; 
[newGroup saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) 
{ 
    if(error) 
     NSLog(@"Error saving %@", error); 
    else 
     NSLog(@"Successfully added a group"); 
}]; 

More details here

相關問題