This is EmptyQ.m in view mode; [Download] [Up]
#import "EmptyQ.h" @implementation EmptyQ - (void)applicationDidFinishLaunching:(NSNotification *)notification // In order for your object to receive this notification make sure that // your object is a delegate or "File's Owner" in IB. // Connected from "File's Owner" to YourObject. { [NSBundle loadNibNamed:@"MailPanel.nib" owner:self]; } - (void)Sendmail:(id)sender { [NSBundle loadNibNamed:@"MailPanel.nib" owner:self]; // load nib } - (void)ShowInfoPanel:(id)sender { [NSBundle loadNibNamed:@"InfoPanel.nib" owner:self]; // load nib } - (void)ShowMoreInfo:(id)sender { [NSBundle loadNibNamed:@"MoreInfo.nib" owner:self]; // load nib } @end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.