mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
18 lines
330 B
Objective-C
18 lines
330 B
Objective-C
//
|
|
// main.m
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"RKTwitterAppDelegate");
|
|
return retVal;
|
|
}
|
|
}
|