I need some help to write a reg exp to find times in the following format 00:00 and 0:00 (up to max value 23:59)
NSPredicate *timePredicate = [NSPredicate predicateWithFormat:@"SELF MATCHES ??"];
NSArray *filteredArray = [someArray filteredArrayUsingPredicate:timePredicate];