i have an NSMutableArray that contains some NsDictionary with NSstring for differents Keys. Somethings like:
NSDictionary *ExempleDictionary = [NSDictionary dictionaryWithObjectsAndKeys:[Date objectAtIndex:sender.tag],@"DATE",[Time objectAtIndex:sender.tag],@"TIME", nil];
I'd like to check if a particular object with DATE=xxx && TIME=xxx exist in the Array.
Any idea?!