apps-gorm/Documentation/Examples/Controller/MyController.m
2023-09-09 19:40:27 -04:00

25 lines
348 B
Objective-C

/* All rights reserved */
#include <AppKit/AppKit.h>
#include "MyController.h"
@implementation MyController
- (void) buttonPressed: (id)sender
{
[value setStringValue: @"Hello"];
}
- (void) openWindow: (id) sender
{
winController = [[WinController alloc] init];
}
- (void) dealloc
{
[super dealloc];
RELEASE(winController);
}
@end