This is LoginStatObject.m in view mode; [Download] [Up]
#import "LoginStatObject.h" @implementation LoginStatObject - (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 MenuObject in this case. { [NSBundle loadNibNamed:@"LoginStatPanel.nib" owner:self]; } - (void)InfoPanel:(id)sender { [NSBundle loadNibNamed:@"InfoPanel.nib" owner:self]; // load nib } - (void)IntroAndHelp:(id)sender { [NSBundle loadNibNamed:@"HelpIntro.nib" owner:self]; // load nib } - (void)MoreInfo:(id)sender { [NSBundle loadNibNamed:@"MoreInfo.nib" owner:self]; // load nib } - (void)NewPanel:(id)sender { [NSBundle loadNibNamed:@"LoginStatPanel.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.