public
Description: NatsuLiphone - The twitter client for iPhone / iPod touch
Homepage: http://iphone.natsulion.org
Clone URL: git://github.com/takuma104/ntlniph.git
ntlniph / main.m
100644 10 lines (7 sloc) 0.229 kb
1
2
3
4
5
6
7
8
9
10
#import <UIKit/UIKit.h>
 
int main(int argc, char *argv[]) {
 
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"NTLNAppDelegate");
[pool release];
return retVal;
}