Sorry about the weird title... all will be explained.
Basically I have an array/dictionary structure like this in my app:
NSArray {
NSDictionary {
(NSString *)id;
(NSDictionary *)dictionary;
}
NSDictionary {
(NSString *)id;
(NSDictionary *)dictionary;
}
NSDictionary {
(NSString *)id;
(NSDictionary *)dictionary;
}
etc...
}
Hope that's easy to work out...
Now I have an (NSString *)id
and I want to get the (NSDictionary *)dictionary
which corresponds to it.
Is there any way that I can do this?
Thank you
Tom