Added suport for model loading.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2665 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ovidiu 1997-12-04 01:58:57 +00:00
parent e46ccd1acf
commit 07252e51bb
33 changed files with 2684 additions and 43 deletions

13
Model/Controller.m Normal file
View file

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