2008-10-07から1日間の記事一覧

ヒレガス本Chapter7

#import <Cocoa/Cocoa.h> @interface AppController : NSObject { int fido; } @property(readwrite, assign) int fido; //-(int)fido; //-(void)setFido:(int)x; -(IBAction)incrementFido:(id)sender; @end #import "AppController.h" @implementation AppController -(IB</cocoa/cocoa.h>…

ヒレガス本Chapter6

つくるサンプルはChapter5のつづきになります。 #import <Cocoa/Cocoa.h> @interface AppController : NSObject { IBOutlet NSButton *stopButton; IBOutlet NSButton *startBUtton; IBOutlet NSTextField *textField; IBOutlet NSTableView *tableView; NSArray *voiceList</cocoa/cocoa.h>…