APLOC2/Week1/APLOC2 Week 1/APLOC2 Week 1/AppDelegate.h
Brent Marohnic 0876e7ea02 New Project
2013-02-07 04:55:50 -05:00

20 lines
375 B
Objective-C

//
// AppDelegate.h
// APLOC2 Week 1
//
// Created by Brent Marohnic on 2/7/13.
// Copyright (c) 2013 Brent Marohnic. All rights reserved.
//
#import <UIKit/UIKit.h>
@class ViewController;
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) ViewController *viewController;
@end