public
Description: A Hello World App in Cocoa for Mac OS X
Homepage: http://teabass.com/hello-world-in-cocoa/
Clone URL: git://github.com/andrew/hellococoa.git
andrew (author)
Fri Jun 13 02:33:30 -0700 2008
hellococoa / Foo.h
100644 19 lines (13 sloc) 0.269 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Foo.h
// HelloWorld
//
// Created by Andrew Nesbitt on 12/06/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface Foo : NSObject {
  IBOutlet NSTextField *textField;
}
 
- (IBAction)sayHello:(id)sender;
 
@end