home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import "MyObject.h"
- #import <stdio.h>
-
- @implementation MyObject
-
- - incrementButton:sender
- {
- myInt++;
- printf("myInt++ = %d\n", myInt);
- return self;
- }
-
- - decrementButton:sender
- {
- myInt--;
- printf("myInt-- = %d\n", myInt);
- return self;
- }
-
-
- @end
-