move iOS demo project to iOS folder

This commit is contained in:
Ariel Elkin
2014-03-14 18:07:53 +00:00
parent b5e24dec52
commit b7cbce0ced
22 changed files with 64 additions and 49 deletions

18
iOS/Demo/iOS Demo/main.m Normal file
View File

@@ -0,0 +1,18 @@
//
// main.m
// iOS Demo
//
// Created by Ariel Elkin on 03/03/2014.
// Copyright (c) 2014 Ariel Elkin. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}