Subclassed UIView from NIB File not typed to subclass
I have a NIB file, with some class (SomeClassView : UIView) set as the custom class of the top level view of the NIB. SomeClass has IBOutlets that I use to hookup subviews of SomeClass that I lay out in Interface Builder. I instantiate SomeClass like this: - (id)initWithFrame:(CGRect)frame { self = [[[[NSBundle mainBundle] loadNibNamed:@"SomeClassView" owner:nil options:nil] objectAtIndex:0] retain]; // "SomeClassView" is also the name of the nib if (self != nil) { self.frame = frame; } return self; } Now say I subclass SomeClass with SubClassView. I add a method to SubClassView called -(void