From b9df1dfd90d9d7ef50b7be6e756bf87fbd139b66 Mon Sep 17 00:00:00 2001 From: Renaud Pradenc Date: Fri, 25 May 2012 12:49:01 +0200 Subject: [PATCH] Initial Commit --- RoundProgress.xcodeproj/project.pbxproj | 281 ++++++++++++++++++++ RoundProgress/CEAppDelegate.h | 19 ++ RoundProgress/CEAppDelegate.m | 62 +++++ RoundProgress/CEViewController.h | 13 + RoundProgress/CEViewController.m | 34 +++ RoundProgress/RoundProgress-Info.plist | 38 +++ RoundProgress/RoundProgress-Prefix.pch | 14 + RoundProgress/en.lproj/CEViewController.xib | 119 +++++++++ RoundProgress/en.lproj/InfoPlist.strings | 2 + RoundProgress/main.m | 18 ++ 10 files changed, 600 insertions(+) create mode 100644 RoundProgress.xcodeproj/project.pbxproj create mode 100644 RoundProgress/CEAppDelegate.h create mode 100644 RoundProgress/CEAppDelegate.m create mode 100644 RoundProgress/CEViewController.h create mode 100644 RoundProgress/CEViewController.m create mode 100644 RoundProgress/RoundProgress-Info.plist create mode 100644 RoundProgress/RoundProgress-Prefix.pch create mode 100644 RoundProgress/en.lproj/CEViewController.xib create mode 100644 RoundProgress/en.lproj/InfoPlist.strings create mode 100644 RoundProgress/main.m diff --git a/RoundProgress.xcodeproj/project.pbxproj b/RoundProgress.xcodeproj/project.pbxproj new file mode 100644 index 0000000..5c1f462 --- /dev/null +++ b/RoundProgress.xcodeproj/project.pbxproj @@ -0,0 +1,281 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + E230F6C1156F9B1D00D2B84B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E230F6C0156F9B1D00D2B84B /* UIKit.framework */; }; + E230F6C3156F9B1D00D2B84B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E230F6C2156F9B1D00D2B84B /* Foundation.framework */; }; + E230F6C5156F9B1D00D2B84B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E230F6C4156F9B1D00D2B84B /* CoreGraphics.framework */; }; + E230F6CB156F9B1D00D2B84B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E230F6C9156F9B1D00D2B84B /* InfoPlist.strings */; }; + E230F6CD156F9B1D00D2B84B /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E230F6CC156F9B1D00D2B84B /* main.m */; }; + E230F6D1156F9B1D00D2B84B /* CEAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E230F6D0156F9B1D00D2B84B /* CEAppDelegate.m */; }; + E230F6D4156F9B1D00D2B84B /* CEViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E230F6D3156F9B1D00D2B84B /* CEViewController.m */; }; + E230F6D7156F9B1D00D2B84B /* CEViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E230F6D5156F9B1D00D2B84B /* CEViewController.xib */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + E230F6BC156F9B1D00D2B84B /* RoundProgress.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RoundProgress.app; sourceTree = BUILT_PRODUCTS_DIR; }; + E230F6C0156F9B1D00D2B84B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + E230F6C2156F9B1D00D2B84B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + E230F6C4156F9B1D00D2B84B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + E230F6C8156F9B1D00D2B84B /* RoundProgress-Info.plist */ = {isa = PBXFileReference; path = "RoundProgress-Info.plist"; sourceTree = ""; }; + E230F6CA156F9B1D00D2B84B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; + E230F6CC156F9B1D00D2B84B /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + E230F6CE156F9B1D00D2B84B /* RoundProgress-Prefix.pch */ = {isa = PBXFileReference; path = "RoundProgress-Prefix.pch"; sourceTree = ""; }; + E230F6CF156F9B1D00D2B84B /* CEAppDelegate.h */ = {isa = PBXFileReference; path = CEAppDelegate.h; sourceTree = ""; }; + E230F6D0156F9B1D00D2B84B /* CEAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CEAppDelegate.m; sourceTree = ""; }; + E230F6D2156F9B1D00D2B84B /* CEViewController.h */ = {isa = PBXFileReference; path = CEViewController.h; sourceTree = ""; }; + E230F6D3156F9B1D00D2B84B /* CEViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CEViewController.m; sourceTree = ""; }; + E230F6D6156F9B1D00D2B84B /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/CEViewController.xib; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E230F6B9156F9B1D00D2B84B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E230F6C1156F9B1D00D2B84B /* UIKit.framework in Frameworks */, + E230F6C3156F9B1D00D2B84B /* Foundation.framework in Frameworks */, + E230F6C5156F9B1D00D2B84B /* CoreGraphics.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + E230F6B1156F9B1C00D2B84B = { + isa = PBXGroup; + children = ( + E230F6C6156F9B1D00D2B84B /* RoundProgress */, + E230F6BF156F9B1D00D2B84B /* Frameworks */, + E230F6BD156F9B1D00D2B84B /* Products */, + ); + sourceTree = ""; + }; + E230F6BD156F9B1D00D2B84B /* Products */ = { + isa = PBXGroup; + children = ( + E230F6BC156F9B1D00D2B84B /* RoundProgress.app */, + ); + name = Products; + sourceTree = ""; + }; + E230F6BF156F9B1D00D2B84B /* Frameworks */ = { + isa = PBXGroup; + children = ( + E230F6C0156F9B1D00D2B84B /* UIKit.framework */, + E230F6C2156F9B1D00D2B84B /* Foundation.framework */, + E230F6C4156F9B1D00D2B84B /* CoreGraphics.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + E230F6C6156F9B1D00D2B84B /* RoundProgress */ = { + isa = PBXGroup; + children = ( + E230F6CF156F9B1D00D2B84B /* CEAppDelegate.h */, + E230F6D0156F9B1D00D2B84B /* CEAppDelegate.m */, + E230F6D2156F9B1D00D2B84B /* CEViewController.h */, + E230F6D3156F9B1D00D2B84B /* CEViewController.m */, + E230F6D5156F9B1D00D2B84B /* CEViewController.xib */, + E230F6C7156F9B1D00D2B84B /* Supporting Files */, + ); + path = RoundProgress; + sourceTree = ""; + }; + E230F6C7156F9B1D00D2B84B /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E230F6C8156F9B1D00D2B84B /* RoundProgress-Info.plist */, + E230F6C9156F9B1D00D2B84B /* InfoPlist.strings */, + E230F6CC156F9B1D00D2B84B /* main.m */, + E230F6CE156F9B1D00D2B84B /* RoundProgress-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + E230F6BB156F9B1D00D2B84B /* RoundProgress */ = { + isa = PBXNativeTarget; + buildConfigurationList = E230F6DA156F9B1D00D2B84B /* Build configuration list for PBXNativeTarget "RoundProgress" */; + buildPhases = ( + E230F6B8156F9B1D00D2B84B /* Sources */, + E230F6B9156F9B1D00D2B84B /* Frameworks */, + E230F6BA156F9B1D00D2B84B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RoundProgress; + productName = RoundProgress; + productReference = E230F6BC156F9B1D00D2B84B /* RoundProgress.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E230F6B3156F9B1C00D2B84B /* Project object */ = { + isa = PBXProject; + attributes = { + CLASSPREFIX = CE; + LastUpgradeCheck = 0430; + ORGANIZATIONNAME = "Céroce"; + }; + buildConfigurationList = E230F6B6156F9B1C00D2B84B /* Build configuration list for PBXProject "RoundProgress" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = E230F6B1156F9B1C00D2B84B; + productRefGroup = E230F6BD156F9B1D00D2B84B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + E230F6BB156F9B1D00D2B84B /* RoundProgress */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + E230F6BA156F9B1D00D2B84B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E230F6CB156F9B1D00D2B84B /* InfoPlist.strings in Resources */, + E230F6D7156F9B1D00D2B84B /* CEViewController.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E230F6B8156F9B1D00D2B84B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E230F6CD156F9B1D00D2B84B /* main.m in Sources */, + E230F6D1156F9B1D00D2B84B /* CEAppDelegate.m in Sources */, + E230F6D4156F9B1D00D2B84B /* CEViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + E230F6C9156F9B1D00D2B84B /* InfoPlist.strings */ = { + isa = PBXVariantGroup; + children = ( + E230F6CA156F9B1D00D2B84B /* en */, + ); + name = InfoPlist.strings; + sourceTree = ""; + }; + E230F6D5156F9B1D00D2B84B /* CEViewController.xib */ = { + isa = PBXVariantGroup; + children = ( + E230F6D6156F9B1D00D2B84B /* en */, + ); + name = CEViewController.xib; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + E230F6D8156F9B1D00D2B84B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.1; + SDKROOT = iphoneos; + }; + name = Debug; + }; + E230F6D9156F9B1D00D2B84B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ARCHS = "$(ARCHS_STANDARD_32_BIT)"; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_VERSION = com.apple.compilers.llvm.clang.1_0; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 5.1; + OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; + SDKROOT = iphoneos; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E230F6DB156F9B1D00D2B84B /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "RoundProgress/RoundProgress-Prefix.pch"; + INFOPLIST_FILE = "RoundProgress/RoundProgress-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + E230F6DC156F9B1D00D2B84B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "RoundProgress/RoundProgress-Prefix.pch"; + INFOPLIST_FILE = "RoundProgress/RoundProgress-Info.plist"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E230F6B6156F9B1C00D2B84B /* Build configuration list for PBXProject "RoundProgress" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E230F6D8156F9B1D00D2B84B /* Debug */, + E230F6D9156F9B1D00D2B84B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E230F6DA156F9B1D00D2B84B /* Build configuration list for PBXNativeTarget "RoundProgress" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E230F6DB156F9B1D00D2B84B /* Debug */, + E230F6DC156F9B1D00D2B84B /* Release */, + ); + defaultConfigurationIsVisible = 0; + }; +/* End XCConfigurationList section */ + }; + rootObject = E230F6B3156F9B1C00D2B84B /* Project object */; +} diff --git a/RoundProgress/CEAppDelegate.h b/RoundProgress/CEAppDelegate.h new file mode 100644 index 0000000..760eaf7 --- /dev/null +++ b/RoundProgress/CEAppDelegate.h @@ -0,0 +1,19 @@ +// +// CEAppDelegate.h +// RoundProgress +// +// Created by Renaud Pradenc on 25/05/12. +// Copyright (c) 2012 Céroce. All rights reserved. +// + +#import + +@class CEViewController; + +@interface CEAppDelegate : UIResponder + +@property (strong, nonatomic) UIWindow *window; + +@property (strong, nonatomic) CEViewController *viewController; + +@end diff --git a/RoundProgress/CEAppDelegate.m b/RoundProgress/CEAppDelegate.m new file mode 100644 index 0000000..da16c39 --- /dev/null +++ b/RoundProgress/CEAppDelegate.m @@ -0,0 +1,62 @@ +// +// CEAppDelegate.m +// RoundProgress +// +// Created by Renaud Pradenc on 25/05/12. +// Copyright (c) 2012 Céroce. All rights reserved. +// + +#import "CEAppDelegate.h" + +#import "CEViewController.h" + +@implementation CEAppDelegate + +@synthesize window = _window; +@synthesize viewController = _viewController; + +- (void)dealloc +{ + [_window release]; + [_viewController release]; + [super dealloc]; +} + +- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions +{ + self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; + // Override point for customization after application launch. + self.viewController = [[[CEViewController alloc] initWithNibName:@"CEViewController" bundle:nil] autorelease]; + self.window.rootViewController = self.viewController; + [self.window makeKeyAndVisible]; + return YES; +} + +- (void)applicationWillResignActive:(UIApplication *)application +{ + // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. + // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. +} + +- (void)applicationDidEnterBackground:(UIApplication *)application +{ + // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. + // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. +} + +- (void)applicationWillEnterForeground:(UIApplication *)application +{ + // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. +} + +- (void)applicationDidBecomeActive:(UIApplication *)application +{ + // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. +} + +- (void)applicationWillTerminate:(UIApplication *)application +{ + // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. +} + +@end diff --git a/RoundProgress/CEViewController.h b/RoundProgress/CEViewController.h new file mode 100644 index 0000000..79d28fb --- /dev/null +++ b/RoundProgress/CEViewController.h @@ -0,0 +1,13 @@ +// +// CEViewController.h +// RoundProgress +// +// Created by Renaud Pradenc on 25/05/12. +// Copyright (c) 2012 Céroce. All rights reserved. +// + +#import + +@interface CEViewController : UIViewController + +@end diff --git a/RoundProgress/CEViewController.m b/RoundProgress/CEViewController.m new file mode 100644 index 0000000..e40d2ad --- /dev/null +++ b/RoundProgress/CEViewController.m @@ -0,0 +1,34 @@ +// +// CEViewController.m +// RoundProgress +// +// Created by Renaud Pradenc on 25/05/12. +// Copyright (c) 2012 Céroce. All rights reserved. +// + +#import "CEViewController.h" + +@interface CEViewController () + +@end + +@implementation CEViewController + +- (void)viewDidLoad +{ + [super viewDidLoad]; + // Do any additional setup after loading the view, typically from a nib. +} + +- (void)viewDidUnload +{ + [super viewDidUnload]; + // Release any retained subviews of the main view. +} + +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation +{ + return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown); +} + +@end diff --git a/RoundProgress/RoundProgress-Info.plist b/RoundProgress/RoundProgress-Info.plist new file mode 100644 index 0000000..9bba441 --- /dev/null +++ b/RoundProgress/RoundProgress-Info.plist @@ -0,0 +1,38 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleDisplayName + ${PRODUCT_NAME} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + com.ceroce.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/RoundProgress/RoundProgress-Prefix.pch b/RoundProgress/RoundProgress-Prefix.pch new file mode 100644 index 0000000..31d4681 --- /dev/null +++ b/RoundProgress/RoundProgress-Prefix.pch @@ -0,0 +1,14 @@ +// +// Prefix header for all source files of the 'RoundProgress' target in the 'RoundProgress' project +// + +#import + +#ifndef __IPHONE_4_0 +#warning "This project uses features only available in iOS SDK 4.0 and later." +#endif + +#ifdef __OBJC__ + #import + #import +#endif diff --git a/RoundProgress/en.lproj/CEViewController.xib b/RoundProgress/en.lproj/CEViewController.xib new file mode 100644 index 0000000..22c28f0 --- /dev/null +++ b/RoundProgress/en.lproj/CEViewController.xib @@ -0,0 +1,119 @@ + + + + 1280 + 11C25 + 1919 + 1138.11 + 566.00 + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + 916 + + + IBProxyObject + IBUIView + + + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + PluginDependencyRecalculationVersion + + + + + IBFilesOwner + IBCocoaTouchFramework + + + IBFirstResponder + IBCocoaTouchFramework + + + + 274 + {{0, 20}, {320, 460}} + + + + 3 + MC43NQA + + 2 + + + NO + + IBCocoaTouchFramework + + + + + + + view + + + + 7 + + + + + + 0 + + + + + + -1 + + + File's Owner + + + -2 + + + + + 6 + + + + + + + CEViewController + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + UIResponder + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + com.apple.InterfaceBuilder.IBCocoaTouchPlugin + + + + + + 7 + + + + + CEViewController + UIViewController + + IBProjectSource + ./Classes/CEViewController.h + + + + + 0 + IBCocoaTouchFramework + YES + 3 + 916 + + diff --git a/RoundProgress/en.lproj/InfoPlist.strings b/RoundProgress/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/RoundProgress/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/RoundProgress/main.m b/RoundProgress/main.m new file mode 100644 index 0000000..14e8c48 --- /dev/null +++ b/RoundProgress/main.m @@ -0,0 +1,18 @@ +// +// main.m +// RoundProgress +// +// Created by Renaud Pradenc on 25/05/12. +// Copyright (c) 2012 Céroce. All rights reserved. +// + +#import + +#import "CEAppDelegate.h" + +int main(int argc, char *argv[]) +{ + @autoreleasepool { + return UIApplicationMain(argc, argv, nil, NSStringFromClass([CEAppDelegate class])); + } +}