+1  A: 

Your header should probably look something like this:

@interface SomeClass {
    NSArray *filteredChildren; // this should fix the compiler error
}

// If the filteredChildren method is public, add this declaration as well to prevent compiler warnings
- (NSArray *)filteredChildren;

@end
Mike McMaster
Thanks, that works perfectly!
Joshua