82b8de5e23
[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.
23 lines
439 B
Objective-C
23 lines
439 B
Objective-C
//
|
|
// MPAppDelegate_Key.h
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 24/11/11.
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPAppDelegate_Shared.h"
|
|
|
|
@interface MPAppDelegate_Shared (Key)
|
|
|
|
- (void)loadStoredKey;
|
|
- (IBAction)signOut:(id)sender;
|
|
|
|
- (BOOL)tryMasterPassword:(NSString *)tryPassword;
|
|
- (void)updateKey:(NSData *)key;
|
|
- (void)forgetKey;
|
|
|
|
- (NSData *)keyWithLength:(NSUInteger)keyLength;
|
|
|
|
@end
|