libs-gui/Model/Controller.m

14 lines
226 B
Mathematica
Raw Normal View History

#import "Controller.h"
@implementation Controller
- (void)buttonPressed:(id)sender
{
NSString* text
= [NSString stringWithFormat:@"\"%@\" button pressed", [sender title]];
[textField setStringValue:text];
}
@end