home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / resources / classes / CrashTrap.README < prev    next >
Encoding:
Text File  |  1994-11-29  |  1.0 KB  |  33 lines

  1.  
  2.         CrashTrap
  3.         ---------
  4.         
  5. WHAT IT IS:
  6.         
  7. This is a demo of the ObjectError class.  This class can help in debugging an app by reporting on crashes.  When enabled, this class catches terminating signals (ie seg faults, bus errors) and fatal Objective-C runtime errors and writes a backtrace out to the console.  It can also be set to continue after a crash by jumping back into the main event loop.  This can give users the opportunity to save their work.
  8.  
  9. OjectError was written by a number of people - see the .h for the list. 
  10.  
  11.  
  12. HOW TO USE IT:
  13.  
  14. To use ObjectError in your own apps, add the following line(s) in the _main.m file for your project:
  15.  
  16.     [ObjectError setup];
  17.     [ObjectError setMuddleOn:YES];  // optional.
  18.     
  19. right before the line:
  20.  
  21.     [Application new];
  22.  
  23. Don't forget to turn off the "Generate Main File On Save" in ProjectBuilder (under Attributes.)
  24.  
  25.  
  26. SUGGESTIONS / IMPROVEMENTS
  27.  
  28. I am not supporting this object but if you have any suggestions, comments or have made any improvements, I'd like to hear about them.
  29.  
  30. Email to:   ivo@hasc.ca
  31.  
  32.  
  33.