Re: LoadNib not working
Re: LoadNib not working
- Subject: Re: LoadNib not working
- From: Enrique Zamudio <email@hidden>
- Date: Tue, 05 Jun 2001 13:24:25 -0500
- Organization: Nasoft
+loadNibNamed: is a class method, so you can send it directly to the
NSBundle class instead of obtaining the class from the parameter (which
might be nil)
if (![NSBundle loadNibNamed:@"CountDown" owner:self]) {
//whine
}
NSBundle will look for the CountDown.nib inside the bundle containing
the class for the object that you pass as the owner.
eZL