I have an array that looks like this:
(
{
title = "Chris";
isMale = 1;
age = 13;
},
{
defaultTitle = "Jessica";
isMale = 0;
age = 15;
}
)
I want to create another array that contains the dictionaries from the original array where the BOOL isMale is Yes, or 1. How can I do this?