/Whereami/Whereami/main.m

https://bitbucket.org/dhirschl/bnr-3rd-edition · Objective C · 18 lines · 8 code · 3 blank · 7 comment · 0 complexity · fbee2e12a36608390df36d64de9b32ae MD5 · raw file

  1. //
  2. // main.m
  3. // Whereami
  4. //
  5. // Created by Daniel Hirschlein on 8/9/12.
  6. // Copyright (c) 2012 Daniel Hirschlein. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WhereamiAppDelegate.h"
  10. int main(int argc, char *argv[])
  11. {
  12. @autoreleasepool {
  13. return UIApplicationMain(argc, argv, nil, NSStringFromClass([WhereamiAppDelegate class]));
  14. }
  15. }