Files
RestKit/Examples/RKTwitter/main.m
Jeremy Ellison 5dc77ed536 Update RKTwitter Example:
Hook up table view
Spruce Up UI
Get rid of nibs.
2010-10-05 14:18:48 -04:00

18 lines
378 B
Objective-C

//
// main.m
// RKTwitter
//
// Created by Blake Watters on 9/5/10.
// Copyright Two Toasters 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, @"RKTwitterAppDelegate");
[pool release];
return retVal;
}