diff options
Diffstat (limited to 'On Task.m')
| -rw-r--r-- | On Task.m | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,10 +1,15 @@ #import <Foundation/Foundation.h> +#import "NSFileManager+DirectoryLocations.h" + int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; - - // insert code here... - NSLog(@"Hello, World!"); + + NSString *supportPath = [[NSFileManager defaultManager] applicationSupportDirectory]; + + // Take screenshot + NSLog(@"%@", supportPath); + [pool release]; return 0; } |
