I want to copy the values ββof NSMUtableDictionary to another NSMutableDictioary. How can i do this?
Here is my code,
PersonClass.h file: NSMutableDictionary *tempDictionary; @property (nonatomic, retain) NSMutableDictionary *tempDictionary; PersonClass.m @synthesize tempDictionary; tempDictionary = [[NSMutableDictionary alloc] init]; -(PersonClass *) initWithPerson:(NSMutableDictionary *) feedDictionary {
I want to access the tempDictionary values ββfor the person class. SO how can I copy from feedDictionary to tempDictionary. Please help me.
Thanks.
iphone nsmutabledictionary
Pugal
source share