NSMutableDictionary値を含むNSMutableArrayがあります。そのNSMutableArrayに存在する特定のディクショナリ値を特定する必要がありますか?
NSMutableArray:
tableData:
{
{
categories = 267;
"category_ids" = 267;
"created_at" = "2012-04-18 05:32:10";
"custom_design_from" = "2010-12-03 00:00:00";
}
{
categories = 267;
"category_ids" = 267;
"created_at" = "2012-04-18 05:32:10";
"custom_design_from" = "2010-12-03 00:00:00";
}
}
特定の辞書の値を特定する必要があります。
私のコード:
if ( [tableData containsObject:[appDelegate.Product objectAtIndex:i]] )
{
// Return Always false...
}