mirror of
https://github.com/zhigang1992/CERoundProgressView.git
synced 2026-01-12 22:46:24 +08:00
19 lines
346 B
Objective-C
19 lines
346 B
Objective-C
//
|
|
// main.m
|
|
// RoundProgress
|
|
//
|
|
// Created by Renaud Pradenc on 25/05/12.
|
|
// Copyright (c) 2012 Céroce. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "CEAppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([CEAppDelegate class]));
|
|
}
|
|
}
|