-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPCAppDelegate.h
executable file
·38 lines (27 loc) · 1.25 KB
/
PCAppDelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// BHAppDelegate.h
// CollectionViewTutorial
//
// Created by Bryan Hansen on 11/3/12.
// Copyright (c) 2012 Bryan Hansen. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreLocation/CoreLocation.h>
#import <CoreData/CoreData.h>
@class SearchLocationViewController;
@class BHCollectionViewController;
@class PhotosMapViewController;
@interface PCAppDelegate : UIResponder <UIApplicationDelegate, CLLocationManagerDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (retain, nonatomic) UINavigationController *navController;
//@property (strong, nonatomic) MainViewController *viewController;
@property (strong, nonatomic) BHCollectionViewController *collectionController;
@property (strong, nonatomic) PhotosMapViewController *mapViewController;
@property (strong, nonatomic) SearchLocationViewController *searchController;
@property (strong,nonatomic) CLLocationManager *locationManager;
@property (assign,nonatomic)CLLocationCoordinate2D location;
//CORE DATA
@property (nonatomic, retain, readonly) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain, readonly) NSPersistentStoreCoordinator *persistentStoreCoordinator;
@end