On Nov 28, 2008, at 10:12 AM, Alexander Shmelev wrote:
- (id) init
{
        if (![super initWithWindowNibName:@"Dialog"])
                return nil;

        [self window];

        // there is a lot of code here

        return self;
}

I haven't been following this thread, but I believe someone pointed out you should assign to self, because [super initWithWindowNibName:@"Dialog"] might return a different object than the receiver. Something like:


        if (!(self = [super initWithWindowNibName:@"Dialog"]))
                return nil;

        [self window];

        // etc.

Might not be relevant to your problem, but it's worth doing correctly.

--Andy

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to