/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
- //
- // main.m
- // Whereami
- //
- // Created by Daniel Hirschlein on 8/9/12.
- // Copyright (c) 2012 Daniel Hirschlein. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "WhereamiAppDelegate.h"
- int main(int argc, char *argv[])
- {
- @autoreleasepool {
- return UIApplicationMain(argc, argv, nil, NSStringFromClass([WhereamiAppDelegate class]));
- }
- }