Да!
Предполагая, что вы помещаете код в подкласс UIView, вы можете получить массив подпредставлений ...
NSArray *sbviews = [self subviews];
NSMutableArray *textFields; //placeholder for your UITextField subclassed objects.
//enumerate through the subview collection and only add objects to the textFields array that are UITextField objects.
for (id anObject in sbviews) {
if([anObject isKindOfClass: [UITextField class]]){
[textField addObject: anObject];
}
}
Массив textField теперь будет содержать все объекты, относящиеся к классу UITextField ...