Initial Commit

This commit is contained in:
Warren Moore
2012-09-10 12:02:33 -05:00
commit e37df1c2cb
7 changed files with 405 additions and 0 deletions

18
AHAlertViewSample/main.m Normal file
View File

@@ -0,0 +1,18 @@
//
// main.m
// AHAlertViewSample
//
// Created by Warren Moore on 9/10/12.
// Copyright (c) 2012 Auerhaus Development, LLC. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AHAppDelegate.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AHAppDelegate class]));
}
}