Hello,
Please tel me how to have many values for the same key in NSMutableDictionary? because when i use the below approach , the values are being replaces with the recent one
In my case:
[dictionary setObject:forename forKey:[NSNumber numberWithint:code]];
[dictionary setObject:surname forKey:[NSNumber numberWithint:code]];
[dictionary setObject:reminderDate forKey:[NSNumber numberWithint:code]];
when i view the contents of dictionary, i get only the reminderDate for key code. here code is same for all values. help me how to avoid forename and surname being replace by plannedReminder.
Thank You