APLOC2/Week2/APLOCWeek2/APLOCWeek2/AppDelegate.h
2013-02-14 14:09:42 -05:00

20 lines
373 B
Objective-C

//
// AppDelegate.h
// APLOCWeek2
//
// Created by Brent Marohnic on 2/14/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