Re: Why resizing doesn't work for me ?
Re: Why resizing doesn't work for me ?
- Subject: Re: Why resizing doesn't work for me ?
- From: Edward Moy <email@hidden>
- Date: Tue, 4 Dec 2001 12:22:41 -0800
On Tuesday, December 4, 2001, at 01:20 AM, kubernan wrote:
Hello,
Because i had no response, i repost the same question : i don't find
solution.
If i display more than one instance of the same window and call a resize
function in my program,
the second window is resizing instead of the first one.
------ Create.m ---------
- (id)init {
self = [super init];
if (![NSBundle loadNibNamed:@"CreateWindow" owner:self]) {
NSLog(@"Can't launch : CreateWindow.nib");
[self release];
}
}
Sorry if I only caught the tail end of this discussion, but if this is
your entire init method, then perhaps the problem is as simple as not
returning self:
------ Create.m ---------
- (id)init {
self = [super init];
if (![NSBundle loadNibNamed:@"CreateWindow" owner:self]) {
NSLog(@"Can't launch : CreateWindow.nib");
[self release];
return(nil);
}
return(self);
}
--------------------------------------------------------------------------
Edward Moy
Apple Computer, Inc.
email@hidden
(This message is from me as a reader of this list, and not a statement
from Apple.)