Initial Commit

This commit is contained in:
Zhigang Fang
2013-01-07 21:28:05 +08:00
commit ee21cc2fc2
17 changed files with 735 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//
// main.m
// ZGParallelViewForTable
//
// Created by Kyle Fang on 1/7/13.
// Copyright (c) 2013 kylefang. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ZGAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([ZGAppDelegate class]));
}
}