Files
RestKit/Examples/RKCatalog/App/main.m
2011-04-22 11:34:33 -04:00

18 lines
353 B
Objective-C

//
// main.m
// RKCatalog
//
// Created by Blake Watters on 4/21/11.
// Copyright 2011 Two Toasters. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[])
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}