[REMOVED] Apptentive is now implemented by a standard iOS mail
composer window and can optionally include logs.
[IMPROVED] Better inf-level logging of what's going on.
[AUDITED] Made sure no personal is going out through inf+ levels.
33 lines
1005 B
Objective-C
33 lines
1005 B
Objective-C
//
|
|
// MPConfig.m
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 02/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
@implementation MPiOSConfig
|
|
@dynamic sendInfo, helpHidden, showQuickStart;
|
|
|
|
- (id)init {
|
|
|
|
if (!(self = [super init]))
|
|
return self;
|
|
|
|
[self.defaults registerDefaults:[NSDictionary dictionaryWithObjectsAndKeys:
|
|
[NSNumber numberWithBool:NO], NSStringFromSelector(@selector(sendInfo)),
|
|
[NSNumber numberWithBool:NO], NSStringFromSelector(@selector(helpHidden)),
|
|
[NSNumber numberWithBool:YES], NSStringFromSelector(@selector(showQuickStart)),
|
|
@"510296984", NSStringFromSelector(@selector(iTunesID)),
|
|
nil]];
|
|
|
|
return self;
|
|
}
|
|
|
|
+ (MPiOSConfig *)get {
|
|
|
|
return (MPiOSConfig *)[super get];
|
|
}
|
|
|
|
@end
|