Is there any way of getting a key value from an NSDictionary based on its value? I can get the value based on the key in several ways but I need to get at the key.
Using the example below how would I be able to get the key if my value was QuestionType?
NSDictionary *question = [NSDictionary dictionaryWithObjectsAndKeys:
@"QuestionType", @"0",
@"Answer", @"1",
nil];