-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAppDelegate.h
More file actions
25 lines (19 loc) · 820 Bytes
/
AppDelegate.h
File metadata and controls
25 lines (19 loc) · 820 Bytes
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
//
// AppDelegate.h
// DetectTube
//
// Created by Josep Marc Mingot Hidalgo on 18/09/13.
// Copyright (c) 2013 Josep Marc Mingot Hidalgo. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;
- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;
@property (strong, nonatomic) UINavigationController *navigationController;
@property (strong, nonatomic) UISplitViewController *splitViewController;
@end