Files
Cezary Wojcik fa4d467094 2.0.0
Refactored to be object instead of category and added substantial new
animation features.
2013-11-17 00:26:04 -08:00

19 lines
353 B
Objective-C

//
// main.m
// CWNotificationDemo
//
// Created by Cezary Wojcik on 11/15/13.
// Copyright (c) 2013 Cezary Wojcik. 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]));
}
}