home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 2002 February
/
MACPOWER-2002-02.ISO.7z
/
MACPOWER-2002-02.ISO
/
MacPowerオリジナル⁄連載
/
P.264⁄Cocoa
/
Cocoa6-1
/
MyController.m
< prev
Wrap
Text File
|
2001-12-12
|
386b
|
16 lines
#import "MyController.h"
@implementation MyController
- (IBAction)myAction:(id)sender
{
NSButton *theButton = sender;
NSWindow *theWindow = [theButton window];
[theWindow setTitle:@"pushed."]; //ウィンドウのタイトルを変更する
//[theWindow performMiniaturize:sender]; //ウィンドウをドックに収納する
//[theWindow performClose:sender]; //ウィンドウを閉じる
}
@end