Files
Mike Maxwell 35b9a0a5e8 Initial commit
2014-12-28 10:29:43 -08:00

19 lines
360 B
Objective-C

//
// main.m
// MaterialDesignSpinner
//
// Created by Mike Maxwell on 12/28/2014.
// Copyright (c) 2014 Mike Maxwell. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "MMAppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([MMAppDelegate class]));
}
}