APLOC2/Week4/datePlanner/datePlanner/AppDelegate.h

20 lines
374 B
Objective-C

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