/Mobile/iPhone/StoffiRemote/StoffiRemote/main.m
Objective C | 17 lines | 8 code | 2 blank | 7 comment | 0 complexity | 93dfae17e7df6b933fb915d79d043270 MD5 | raw file
1// 2// main.m 3// StoffiRemote 4// 5// Created by Fredrik Gadnell on 9/11/11. 6// Copyright 2011 __MyCompanyName__. All rights reserved. 7// 8 9#import <UIKit/UIKit.h> 10 11int main(int argc, char *argv[]) 12{ 13 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; 14 int retVal = UIApplicationMain(argc, argv, nil, nil); 15 [pool release]; 16 return retVal; 17}