mirror of
https://github.com/thestk/stk
synced 2026-01-11 20:11:52 +00:00
19 lines
341 B
Objective-C
19 lines
341 B
Objective-C
//
|
|
// 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]));
|
|
}
|
|
}
|