Hi all,
I have an nsdictionary like this:
NSDictionary *code = [data objectForKey
"code"];
code looks like this:
code = {
fence = OFF;
}
Now I want to get the name 'fence' rather than the value 'OFF'. So objectForKey wont work. I have a generic method so i can't explicitly ask for "fence".
thanks for response
I have an nsdictionary like this:
NSDictionary *code = [data objectForKey
code looks like this:
code = {
fence = OFF;
}
Now I want to get the name 'fence' rather than the value 'OFF'. So objectForKey wont work. I have a generic method so i can't explicitly ask for "fence".
thanks for response