Change your code to this to get rid of the warning:
Code:
for (id entry in bookmarkDict)
{
if ([entry hasPrefix:@"Stanford"])
{
NSLog(@"Key: '%@' URL: '%@'", entry, [bookmarkDict objectForKey:entry]);
}
}
The problem you have is that the enumerator for iterating through the dictionary is not a (NSDictionary *). It's a generic pointer (id) because you don't actually know what the dictionary entry type is.
joe