Hi,
I have an NSDictionary that when I NSLog prints this out
{
206510 = 1;
622845 = 1;
926131 = "";
100000977163362 = "";
}
Why does
[dict objectForKey:@"206510"]
gives null?
This is how I setup the dictionary in the first place.
[dict setObject:[status objectForKey:@"game_status"] forKey:(NSString*) [status objectForKey:@"id"]];
Thanks,
Tee