2
0

Initial UI.

This commit is contained in:
Maarten Billemont
2011-11-30 22:42:40 +01:00
commit d7a448dfe0
26 changed files with 5262 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// OPAppDelegate.h
// OnePassword
//
// Created by Maarten Billemont on 24/11/11.
// Copyright (c) 2011 Lyndir. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface OPAppDelegate : AbstractAppDelegate
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;
- (void)saveContext;
- (NSURL *)applicationDocumentsDirectory;
@end