mirror of
https://github.com/zhigang1992/KLCircleViewController.git
synced 2026-03-30 17:14:24 +08:00
19 lines
345 B
Objective-C
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]));
|
|
}
|
|
}
|