Re: *Still* Crashing Cross Development
Re: *Still* Crashing Cross Development
- Subject: Re: *Still* Crashing Cross Development
- From: "Marcus S. Zarra" <email@hidden>
- Date: Fri, 17 Feb 2006 14:44:34 -0700
Assigned it to self will not solve anything as the super does that
for you already. self = [super init], as I understand it, is just an
old habit that has not gone away. There is no need for it.
Question: What class is this class subclassing? If I had to guess
with this little information, I would guess that the parent does not
appreciate the raw -init being called. It probably wants another
init called like initWithWindowNibName:. Again that is just a guess
based on the tiny amount of information presented.
On Feb 17, 2006, at 2:18 PM, Sherm Pendley wrote:
On Feb 17, 2006, at 3:06 PM, Robert Clair wrote:
the bit of code it's executing is:
- (id) init
{
[super init];
Try this instead:
self = [super init];
Attachment:
smime.p7s
Description: S/MIME cryptographic signature
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden