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   
Text File  |  2001-12-12  |  386b  |  16 lines

  1. #import "MyController.h"
  2.  
  3. @implementation MyController
  4.  
  5. - (IBAction)myAction:(id)sender
  6. {
  7.     NSButton *theButton = sender;
  8.     NSWindow *theWindow = [theButton window];
  9.     
  10.     [theWindow setTitle:@"pushed."]; //ウィンドウのタイトルを変更する
  11.     //[theWindow performMiniaturize:sender]; //ウィンドウをドックに収納する
  12.     //[theWindow performClose:sender]; //ウィンドウを閉じる
  13. }
  14.  
  15. @end
  16.