How can I make my Nib load correctly my customized UIScrollView subclass? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T22:16:11Zhttp://stackoverflow.com/feeds/question/835735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/835735/how-can-i-make-my-nib-load-correctly-my-customized-uiscrollview-subclass0How can I make my Nib load correctly my customized UIScrollView subclass?Thanks2009-05-07T16:31:19Z2009-05-07T17:02:18Z
<p>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.</p>
<p>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.</p>
<p>Is there something else I must consider when subclassing a UIScrollView while still using a Nib file to bring it into perspective?</p>
<p>My dedicated initializer looks like this:</p>
<pre><code>- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
NSLog(@"Hello !!!!!!!!!!!!!");
}
return self;
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/835735/how-can-i-make-my-nib-load-correctly-my-customized-uiscrollview-subclass/835879#8358791Answer by rjstelling for How can I make my Nib load correctly my customized UIScrollView subclass?rjstelling2009-05-07T17:02:18Z2009-05-07T17:02:18Z<p>Objects in a nib or xib are stored as serialized objects, this may mean you have to use the <code>awakeFromNib</code> method because init methods are never called.</p>