我有一个像这样的数组
`
(lldb) po list
(NSArray *) $1 = 0x0759f120 <__NSArrayI 0x759f120>(
{
EmployeeCode = 7593;
InDate = "27/02/2013";
InTime = "08:11";
InTime2 = "00:00";
OutDate = "27/02/2013";
OutDate2 = "01/01/1901";
OutTime = "17:42";
OutTime2 = "00:00";
Present = 1;
}
)
`
如何在此处访问每个元素。 Plz帮帮我
由于
答案 0 :(得分:0)
您的NSArray
包含NSDictionary
格式的值,因此在数组中的每个index
您都会获得NSDictionary
,因此您可以像这样访问它,
NSLog(@"Employee Code = %@", [[yourArray objectAtIndex:index] valueForKey:@"EmployeeCode"]);
其中,index = 0&amp;指数&lt; [yourArray count]