document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #import <Foundation/Foundation.h>
  2. // unArchive.m
  3. // Reading a property list file and printing it to the screen
  4.  
  5. int main (int argc, char *argv[])
  6. {
  7.  
  8.   NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
  9.   NSDictionary *buildings;
  10.  
  11.   buildings = [NSDictionary dictionaryWithContentsOfFile: @"buildings"];
  12.  
  13.   for (NSString *key in buildings)
  14.     NSLog (@"%@: %@", key, [buildings objectForKey: key]);
  15.  
  16.   [pool drain];
  17.   return 0;
  18.  
  19. }
');