NSMutableDictionary *expense_ArrContents = [[NSMutableDictionary alloc]init];
for (int i = 1; i<=4; i++) {
NSMutableArray *current_row = [NSMutableArray arrayWithObjects:@"payer_id",@"Expense_Type_id",@"Category_Id",@"SubCategory_Id",nil];
[expense_ArrContents setObject:current_row forKey: [NSNumber numberWithInt:i]];
}
NSArray *newArray = [expense_ArrContents allKeysForObject:@"payer_id"];
NSLog(@"%@",[newArray description]);
我想要得到包含特定對象,它是存儲在的NSMutableDictionary特定鍵值的陣列中的密鑰值的列表。的NSMutableDictionary - 使用allKeysforObject不檢索數組值
我想獲得包含特定objectvalue這是陣列中的密鑰列表nsmutabledictionary – itechnician
但是你的字典不包含@「payer_id」的任何對象,另一方面它包含數組作爲具有這個對象的對象。根據你的代碼,所有的鍵都會有這個對象。所以你在什麼基礎上發現哪個鍵包含這個對象? –