i see i see...thks for the help. finally starting to get a hang of objective c...
i should be using:
Code:
[B]NSDictionary[/B] *array3 = [[[B]NSDictionary dictionaryWithContentsOfFile[/B]:finalPath] retain];
int count = 0;
for (NSDictionary *dict in array3){
count += dict.count;
}
but this way count will be equal to total number of keys or the total number of items of all the keys?