NewsBlur/media/ios/Other Sources/main.m

21 lines
430 B
Mathematica
Raw Normal View History

//
// main.m
// NewsBlur
//
// Created by Samuel Clay on 6/16/10.
// Copyright NewsBlur 2010. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
int main(int argc, char *argv[]) {
2012-07-15 15:06:06 -07:00
@autoreleasepool {
// int retVal = UIApplicationMain(argc, argv, nil, nil);
2012-07-09 21:43:13 -07:00
// for iOS6
int retVal = UIApplicationMain(argc, argv, nil, @"NewsBlurAppDelegate");
2012-07-15 15:06:06 -07:00
return retVal;
}
}