1
我試圖從Parse的PeopleName
類中獲取所有名稱。它沒有顯示任何生成錯誤,但我得到一個運行時錯誤Error: field Name cannot be included because it is not a pointer to another object (Code: 102, Version: 1.2.17)
。如何從Parse.com獲取單個密鑰的所有值
這是代碼。任何幫助?
PFQuery *query = [PFQuery queryWithClassName:@"PeopleNames"];
[query includeKey:@"Name"];
[query selectKeys:@[@"Name"]];
[query findObjectsInBackgroundWithBlock:^(NSArray *results, NSError *error) {
for (PFObject *object in results) {
[self.boyNames addObject:[object objectForKey:@"Name"]];
}
}];
非常感謝。這現在起作用。 – Sage
錯誤消失了,但我仍然無法獲取self.boyNames NSMutable數組中的名稱。你介意幫助我獲得這個陣列中的所有名字嗎? – Sage
你記錄了'results'中的對象嗎?另外,記錄'錯誤'。他們是什麼? – Wain