vote up 0 vote down star

I had an nice UIScrollView inside my nib, which worked nicely. Then I had some very special needs and subclassed UIScrollView. In my Nib, I changed the class in the identity inspector to my subclass.

But for some reason, my -initWithFrame: method gets never called when the nib loader builds up all those objects from the nib. Actually I didn't change anything right now in my subclass. And the scroll view just works fine. Expect that it seems to be a blank UIScrollView even if I told the nib it should be an SpecializedUIScrollView for testing purposes.

Is there something else I must consider when subclassing a UIScrollView while still using a Nib file to bring it into perspective?

My dedicated initializer looks like this:

- (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
    	NSLog(@"Hello !!!!!!!!!!!!!");
    }
    return self;
}

I'm never seeing that Hello in the console, if I try to load that from the Nib. Of course, if I alloc and initialize that by myself, it works. But I dont want to position my scroll view programmatically around, if I can use that damn cool Interface Builder instead.

flag

58% accept rate

1 Answer

vote up 1 vote down check

Objects in a nib or xib are stored as serialized objects, this may mean you have to use the awakeFromNib method because init methods are never called.

link|flag
That worked! Thanks! – Thanks May 7 at 17:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.