[UPDATED] Change TestFlight preprocessor toggles to TESTFLIGHT_SDK_VERSION. [IMPROVED] Change logic behind shared MPAppDelegate to inheritance, allowing for the common files to implement methods that the platform-specific class can override. [IMPROVED] Handling and checking of config changes. [ADDED] iCloud config toggle, allowing a user to turn on and off the iCloud store. [IMPROVED] Explanation of iCloud.
20 lines
463 B
Objective-C
20 lines
463 B
Objective-C
//
|
|
// MPAppDelegate_Shared.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 24/11/11.
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
//
|
|
|
|
@interface MPAppDelegate_Shared : PearlAppDelegate
|
|
|
|
@property (strong, nonatomic) NSData *key;
|
|
@property (strong, nonatomic) NSData *keyHash;
|
|
@property (strong, nonatomic) NSString *keyID;
|
|
|
|
+ (MPAppDelegate_Shared *)get;
|
|
|
|
- (NSURL *)applicationFilesDirectory;
|
|
|
|
@end
|