home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / OOP_Course / Examples / Alert / MyObject.m < prev    next >
Encoding:
Text File  |  1993-01-19  |  253 b   |  17 lines

  1.  
  2. #import "MyObject.h"
  3.  
  4.  
  5. @implementation MyObject
  6.  
  7. - alert:sender
  8. {
  9.     int returnedValue;
  10.     returnedValue = NXRunAlertPanel("Title", "Message", "Default", "Option One", "Option Two");
  11.     [display setIntValue:returnedValue];
  12.     return self;
  13. }
  14.  
  15.  
  16. @end
  17.