Re: IBOutlet does not initialize. Newbie Q.
Re: IBOutlet does not initialize. Newbie Q.
- Subject: Re: IBOutlet does not initialize. Newbie Q.
- From: Amul Goswamy <email@hidden>
- Date: Mon, 23 Feb 2004 09:09:01 -0800
You are creating a new instance of StringSplit here. An instance of
StringSplit lives in your nib and that is the instance whose Outlets
point to the text fields.
Instead of instantiating it in code. Make the input ivar into an
IBOutlet and connect that Outlet to your StringSplit instance in IB.
ie:
IBOutlet StringSplit *input;
On Feb 23, 2004, at 8:49 AM, Bernd Carl wrote:
StringSplit *input;
input = [[StringSplit alloc]init]; [input analyse];
Amul Goswamy
Interface Builder
Apple
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.