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-4 / MyController.m < prev   
Text File  |  2001-12-13  |  320b  |  17 lines

  1. #import "MyController.h"
  2.  
  3. @implementation MyController
  4.  
  5. - (BOOL)windowShouldClose:(id)sender
  6. {
  7.     int theResp = NSRunAlertPanel(@"Warning",@"Do you close?",@"Yes",@"No",nil);
  8.     return (theResp == NSAlertDefaultReturn) ? YES : NO;
  9. }
  10.  
  11. - (IBAction)myAction:(id)sender
  12. {
  13.     [myTextField setStringValue:@"Pushed."];
  14. }
  15.  
  16. @end
  17.