mirror of
https://github.com/zhigang1992/Progress-backup.git
synced 2026-01-13 08:20:40 +08:00
19 lines
337 B
Objective-C
19 lines
337 B
Objective-C
//
|
|
// main.m
|
|
// Progress
|
|
//
|
|
// Created by Kyle Fang on 12/30/12.
|
|
// Copyright (c) 2012 kylefang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "PPAppDelegate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([PPAppDelegate class]));
|
|
}
|
|
}
|