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
2009-07-31 06:28:24