Files
2013-08-06 20:41:46 -04:00

19 lines
345 B
Objective-C

//
// main.m
// KLCircleViewControllerDemo
//
// Created by IBM on 2013-07-23.
// Copyright (c) 2013 KL. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "KLAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([KLAppDelegate class]));
}
}