23 lines
636 B
Objective-C
23 lines
636 B
Objective-C
//
|
|
// CWAppDelegate.h
|
|
// CWStatusBarNotificationDemo
|
|
//
|
|
// Created by Cezary Wojcik on 9/18/13.
|
|
// Copyright (c) 2013 Cezary Wojcik. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface CWAppDelegate : 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;
|
|
|
|
@end
|