2017-04-05 20:56:22 +00:00
|
|
|
//==============================================================================
|
|
|
|
// This file is part of Master Password.
|
|
|
|
// Copyright (c) 2011-2017, Maarten Billemont.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// Master Password is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2012-06-04 09:27:02 +00:00
|
|
|
//
|
2017-04-05 20:56:22 +00:00
|
|
|
// You can find a copy of the GNU General Public License in the
|
|
|
|
// LICENSE file. Alternatively, see <http://www.gnu.org/licenses/>.
|
|
|
|
//==============================================================================
|
2012-06-04 09:27:02 +00:00
|
|
|
|
|
|
|
#import "MPPreferencesViewController.h"
|
2013-04-25 01:26:04 +00:00
|
|
|
#import "MPiOSAppDelegate.h"
|
2012-06-07 22:40:30 +00:00
|
|
|
#import "MPAppDelegate_Key.h"
|
2012-06-11 14:15:49 +00:00
|
|
|
#import "MPAppDelegate_Store.h"
|
2014-04-20 15:09:49 +00:00
|
|
|
#import "UIColor+Expanded.h"
|
2017-05-07 22:36:01 +00:00
|
|
|
#import "MPSitesViewController.h"
|
2016-01-14 15:03:30 +00:00
|
|
|
#import "MPAppDelegate_InApp.h"
|
2012-06-04 09:27:02 +00:00
|
|
|
|
2013-04-20 18:11:19 +00:00
|
|
|
@interface MPPreferencesViewController()
|
2012-06-04 09:27:02 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation MPPreferencesViewController
|
|
|
|
|
|
|
|
- (void)viewDidLoad {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-06-04 09:27:02 +00:00
|
|
|
[super viewDidLoad];
|
2014-04-20 15:09:49 +00:00
|
|
|
|
|
|
|
self.view.backgroundColor = [UIColor clearColor];
|
2016-01-14 15:03:30 +00:00
|
|
|
|
|
|
|
self.tableView.rowHeight = UITableViewAutomaticDimension;
|
|
|
|
self.tableView.estimatedRowHeight = 100;
|
|
|
|
self.tableView.contentInset = UIEdgeInsetsMake( 64, 0, 49, 0 );
|
2012-06-04 09:27:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewWillAppear:(BOOL)animated {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2014-04-26 18:03:44 +00:00
|
|
|
inf( @"Preferences will appear" );
|
2014-04-20 15:09:49 +00:00
|
|
|
[super viewWillAppear:animated];
|
2014-09-29 02:15:55 +00:00
|
|
|
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"tipped.passwordsPreferences"];
|
2014-10-24 04:35:05 +00:00
|
|
|
if (![[NSUserDefaults standardUserDefaults] synchronize])
|
|
|
|
wrn( @"Couldn't synchronize after preferences appearance." );
|
2012-06-05 22:59:09 +00:00
|
|
|
|
2016-01-14 14:58:04 +00:00
|
|
|
[self reload];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)reload {
|
|
|
|
|
2013-06-16 16:39:52 +00:00
|
|
|
MPUserEntity *activeUser = [[MPiOSAppDelegate get] activeUserForMainThread];
|
2016-01-14 14:58:04 +00:00
|
|
|
self.avatarImage.image = [UIImage imageNamed:strf( @"avatar-%lu", (unsigned long)activeUser.avatar )];
|
2013-04-18 02:00:15 +00:00
|
|
|
self.savePasswordSwitch.on = activeUser.saveKey;
|
2016-01-14 07:14:36 +00:00
|
|
|
self.touchIDSwitch.on = activeUser.touchID;
|
2016-01-14 16:22:15 +00:00
|
|
|
self.touchIDSwitch.enabled = self.savePasswordSwitch.on && [[MPiOSAppDelegate get] isFeatureUnlocked:MPProductTouchID];
|
2017-04-18 01:57:08 +00:00
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
MPResultType defaultType = activeUser.defaultType;
|
2017-04-18 01:57:08 +00:00
|
|
|
self.generated1TypeControl.selectedSegmentIndex = [self generated1SegmentIndexForType:defaultType];
|
|
|
|
self.generated2TypeControl.selectedSegmentIndex = [self generated2SegmentIndexForType:defaultType];
|
|
|
|
self.storedTypeControl.selectedSegmentIndex = [self storedSegmentIndexForType:defaultType];
|
|
|
|
PearlNotMainQueue( ^{
|
|
|
|
NSString *examplePassword = nil;
|
2017-08-13 01:57:47 +00:00
|
|
|
if (defaultType & MPResultTypeClassTemplate)
|
|
|
|
examplePassword = [MPAlgorithmDefault mpwTemplateForSiteNamed:@"test" ofType:defaultType
|
|
|
|
withCounter:1 usingKey:[MPiOSAppDelegate get].key];
|
2017-04-18 01:57:08 +00:00
|
|
|
PearlMainQueue( ^{
|
2017-05-07 22:36:01 +00:00
|
|
|
self.typeSamplePassword.text = [examplePassword length]? [NSString stringWithFormat:@"eg. %@", examplePassword]: nil;
|
2017-04-18 01:57:08 +00:00
|
|
|
} );
|
|
|
|
} );
|
2012-06-04 09:27:02 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
#pragma mark - UITableViewDelegate
|
2013-04-30 01:15:14 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
|
2013-04-30 01:15:14 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
UITableViewCell *cell = [super tableView:tableView cellForRowAtIndexPath:indexPath];
|
|
|
|
if (cell.selectionStyle != UITableViewCellSelectionStyleNone) {
|
|
|
|
cell.selectedBackgroundView = [[UIView alloc] initWithFrame:cell.bounds];
|
|
|
|
cell.selectedBackgroundView.backgroundColor = [UIColor colorWithRGBAHex:0x78DDFB33];
|
2013-04-30 01:15:14 +00:00
|
|
|
}
|
2013-04-20 18:11:19 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
return cell;
|
2012-06-04 09:27:02 +00:00
|
|
|
}
|
|
|
|
|
2016-01-14 15:03:30 +00:00
|
|
|
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
|
|
|
|
|
|
return UITableViewAutomaticDimension;
|
|
|
|
}
|
|
|
|
|
2012-06-05 22:59:09 +00:00
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2012-06-05 22:59:09 +00:00
|
|
|
UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];
|
2014-05-18 00:12:59 +00:00
|
|
|
if (cell == self.signOutCell) {
|
2014-05-18 03:52:51 +00:00
|
|
|
[self dismissPopup];
|
2014-05-18 00:12:59 +00:00
|
|
|
[[MPiOSAppDelegate get] signOutAnimated:YES];
|
|
|
|
}
|
2017-04-18 01:57:08 +00:00
|
|
|
|
2014-04-25 01:43:47 +00:00
|
|
|
if (cell == self.feedbackCell)
|
|
|
|
[[MPiOSAppDelegate get] showFeedbackWithLogs:YES forVC:self];
|
2017-04-18 01:57:08 +00:00
|
|
|
|
2012-06-05 22:59:09 +00:00
|
|
|
if (cell == self.exportCell)
|
2014-04-25 01:43:47 +00:00
|
|
|
[[MPiOSAppDelegate get] showExportForVC:self];
|
2017-04-18 01:57:08 +00:00
|
|
|
|
2014-06-22 01:59:14 +00:00
|
|
|
if (cell == self.showHelpCell) {
|
2017-05-07 22:36:01 +00:00
|
|
|
MPSitesViewController *passwordsVC = [self dismissPopup];
|
2014-06-22 01:59:14 +00:00
|
|
|
[passwordsVC performSegueWithIdentifier:@"guide" sender:self];
|
2014-04-25 01:43:47 +00:00
|
|
|
}
|
2017-04-18 01:57:08 +00:00
|
|
|
|
2014-04-26 18:03:44 +00:00
|
|
|
if (cell == self.checkInconsistencies)
|
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
|
|
if ([[MPiOSAppDelegate get] findAndFixInconsistenciesSaveInContext:context] == MPFixableResultNoProblems)
|
|
|
|
[PearlAlert showAlertWithTitle:@"No Inconsistencies" message:
|
2017-04-01 04:30:25 +00:00
|
|
|
@"No inconsistencies were detected in your sites."
|
2014-04-26 18:03:44 +00:00
|
|
|
viewStyle:UIAlertViewStyleDefault initAlert:nil
|
|
|
|
tappedButtonBlock:nil cancelTitle:[PearlStrings get].commonButtonOkay otherTitles:nil];
|
|
|
|
}];
|
2012-06-05 22:59:09 +00:00
|
|
|
|
2012-06-06 20:38:43 +00:00
|
|
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
2012-06-05 22:59:09 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
#pragma mark - IBActions
|
2012-06-11 14:15:49 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
- (IBAction)valueChanged:(id)sender {
|
2012-06-11 14:15:49 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
if (sender == self.savePasswordSwitch)
|
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
|
|
MPUserEntity *activeUser = [[MPiOSAppDelegate get] activeUserInContext:context];
|
|
|
|
if ((activeUser.saveKey = self.savePasswordSwitch.on))
|
|
|
|
[[MPiOSAppDelegate get] storeSavedKeyFor:activeUser];
|
2016-01-14 07:14:36 +00:00
|
|
|
else
|
|
|
|
[[MPiOSAppDelegate get] forgetSavedKeyFor:activeUser];
|
|
|
|
[context saveToStore];
|
2016-01-14 14:58:04 +00:00
|
|
|
|
2017-04-01 04:30:25 +00:00
|
|
|
PearlMainQueue( ^{
|
2016-01-14 14:58:04 +00:00
|
|
|
[self reload];
|
2017-04-01 04:30:25 +00:00
|
|
|
} );
|
2016-01-14 07:14:36 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
if (sender == self.touchIDSwitch)
|
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
|
|
MPUserEntity *activeUser = [[MPiOSAppDelegate get] activeUserInContext:context];
|
|
|
|
if ((activeUser.touchID = self.touchIDSwitch.on))
|
|
|
|
[[MPiOSAppDelegate get] storeSavedKeyFor:activeUser];
|
2014-04-20 15:09:49 +00:00
|
|
|
else
|
|
|
|
[[MPiOSAppDelegate get] forgetSavedKeyFor:activeUser];
|
|
|
|
[context saveToStore];
|
2016-01-14 14:58:04 +00:00
|
|
|
|
|
|
|
PearlMainQueue( ^{
|
|
|
|
[self reload];
|
|
|
|
} );
|
2014-04-20 15:09:49 +00:00
|
|
|
}];
|
|
|
|
|
2017-04-18 01:57:08 +00:00
|
|
|
if (sender == self.generated1TypeControl || sender == self.generated2TypeControl || sender == self.storedTypeControl) {
|
|
|
|
if (sender != self.generated1TypeControl)
|
|
|
|
self.generated1TypeControl.selectedSegmentIndex = -1;
|
|
|
|
if (sender != self.generated2TypeControl)
|
|
|
|
self.generated2TypeControl.selectedSegmentIndex = -1;
|
|
|
|
if (sender != self.storedTypeControl)
|
2014-04-26 00:02:58 +00:00
|
|
|
self.storedTypeControl.selectedSegmentIndex = -1;
|
2014-04-26 18:03:44 +00:00
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
MPResultType defaultType = [self typeForSelectedSegment];
|
2014-04-20 15:09:49 +00:00
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
2016-01-14 14:58:04 +00:00
|
|
|
[[MPiOSAppDelegate get] activeUserInContext:context].defaultType = defaultType;
|
2014-04-20 15:09:49 +00:00
|
|
|
[context saveToStore];
|
2014-04-26 00:02:58 +00:00
|
|
|
|
|
|
|
PearlMainQueue( ^{
|
2016-01-14 14:58:04 +00:00
|
|
|
[self reload];
|
2014-04-26 00:02:58 +00:00
|
|
|
} );
|
2014-04-20 15:09:49 +00:00
|
|
|
}];
|
2014-04-26 00:02:58 +00:00
|
|
|
}
|
2014-04-20 15:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)previousAvatar:(id)sender {
|
2012-06-11 14:15:49 +00:00
|
|
|
|
2013-05-16 02:42:21 +00:00
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
|
|
MPUserEntity *activeUser = [[MPiOSAppDelegate get] activeUserInContext:context];
|
2014-04-20 15:09:49 +00:00
|
|
|
activeUser.avatar = (activeUser.avatar - 1 + MPAvatarCount) % MPAvatarCount;
|
2013-05-16 02:42:21 +00:00
|
|
|
[context saveToStore];
|
2014-04-20 15:09:49 +00:00
|
|
|
|
2016-01-14 14:58:04 +00:00
|
|
|
NSUInteger avatar = activeUser.avatar;
|
2014-04-20 15:09:49 +00:00
|
|
|
PearlMainQueue( ^{
|
2016-01-14 14:58:04 +00:00
|
|
|
self.avatarImage.image = [UIImage imageNamed:strf( @"avatar-%lu", (unsigned long)avatar )];
|
2014-04-20 15:09:49 +00:00
|
|
|
} );
|
2013-05-16 02:42:21 +00:00
|
|
|
}];
|
2012-06-11 14:15:49 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
- (IBAction)nextAvatar:(id)sender {
|
2012-06-11 14:15:49 +00:00
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
[MPiOSAppDelegate managedObjectContextPerformBlock:^(NSManagedObjectContext *context) {
|
|
|
|
MPUserEntity *activeUser = [[MPiOSAppDelegate get] activeUserInContext:context];
|
|
|
|
activeUser.avatar = (activeUser.avatar + 1 + MPAvatarCount) % MPAvatarCount;
|
|
|
|
[context saveToStore];
|
2012-06-11 14:15:49 +00:00
|
|
|
|
2016-01-14 14:58:04 +00:00
|
|
|
NSUInteger avatar = activeUser.avatar;
|
2014-04-20 15:09:49 +00:00
|
|
|
PearlMainQueue( ^{
|
2016-01-14 14:58:04 +00:00
|
|
|
self.avatarImage.image = [UIImage imageNamed:strf( @"avatar-%lu", (unsigned long)avatar )];
|
2014-04-20 15:09:49 +00:00
|
|
|
} );
|
|
|
|
}];
|
|
|
|
}
|
2012-06-05 22:59:09 +00:00
|
|
|
|
2014-06-04 01:04:22 +00:00
|
|
|
- (IBAction)homePageButton:(id)sender {
|
|
|
|
|
|
|
|
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
|
2018-05-03 11:51:00 +00:00
|
|
|
[NSURL URLWithString:@"https://masterpasswordapp.com"]];
|
2014-06-04 01:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)securityButton:(id)sender {
|
|
|
|
|
|
|
|
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
|
2018-05-03 11:51:00 +00:00
|
|
|
[NSURL URLWithString:@"https://masterpasswordapp.com/security.html"]];
|
2014-06-04 01:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)sourceButton:(id)sender {
|
|
|
|
|
|
|
|
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
|
|
|
|
[NSURL URLWithString:@"https://github.com/Lyndir/MasterPassword/"]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)thanksButton:(id)sender {
|
|
|
|
|
|
|
|
[[self dismissPopup].navigationController performSegueWithIdentifier:@"web" sender:
|
2017-04-30 22:45:08 +00:00
|
|
|
[NSURL URLWithString:@"https://thanks.lhunath.com"]];
|
2014-06-04 01:04:22 +00:00
|
|
|
}
|
|
|
|
|
2014-04-20 15:09:49 +00:00
|
|
|
#pragma mark - Private
|
|
|
|
|
2017-05-07 22:36:01 +00:00
|
|
|
- (MPSitesViewController *)dismissPopup {
|
2014-05-18 00:12:59 +00:00
|
|
|
|
|
|
|
for (UIViewController *vc = self; (vc = vc.parentViewController);)
|
2017-05-07 22:36:01 +00:00
|
|
|
if ([vc isKindOfClass:[MPSitesViewController class]]) {
|
|
|
|
MPSitesViewController *passwordsVC = (MPSitesViewController *)vc;
|
2014-05-18 00:12:59 +00:00
|
|
|
[passwordsVC dismissPopdown:self];
|
|
|
|
return passwordsVC;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
- (MPResultType)typeForSelectedSegment {
|
2014-04-20 15:09:49 +00:00
|
|
|
|
2017-04-18 01:57:08 +00:00
|
|
|
NSInteger selectedGenerated1Index = self.generated1TypeControl.selectedSegmentIndex;
|
|
|
|
NSInteger selectedGenerated2Index = self.generated2TypeControl.selectedSegmentIndex;
|
2014-04-26 00:02:58 +00:00
|
|
|
NSInteger selectedStoredIndex = self.storedTypeControl.selectedSegmentIndex;
|
|
|
|
|
2017-04-18 01:57:08 +00:00
|
|
|
switch (selectedGenerated1Index) {
|
|
|
|
case 0:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplatePhrase;
|
2017-04-18 01:57:08 +00:00
|
|
|
case 1:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateName;
|
2017-04-18 01:57:08 +00:00
|
|
|
default:
|
2017-05-07 22:36:01 +00:00
|
|
|
switch (selectedGenerated2Index) {
|
2014-04-26 00:02:58 +00:00
|
|
|
case 0:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateMaximum;
|
2014-04-26 00:02:58 +00:00
|
|
|
case 1:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateLong;
|
2017-05-07 22:36:01 +00:00
|
|
|
case 2:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateMedium;
|
2017-05-07 22:36:01 +00:00
|
|
|
case 3:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateBasic;
|
2017-05-07 22:36:01 +00:00
|
|
|
case 4:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplateShort;
|
2017-05-07 22:36:01 +00:00
|
|
|
case 5:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeTemplatePIN;
|
2014-04-26 00:02:58 +00:00
|
|
|
default:
|
2017-05-07 22:36:01 +00:00
|
|
|
|
|
|
|
switch (selectedStoredIndex) {
|
|
|
|
case 0:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeStatefulPersonal;
|
2017-05-07 22:36:01 +00:00
|
|
|
case 1:
|
2017-08-13 01:57:47 +00:00
|
|
|
return MPResultTypeStatefulDevice;
|
2017-05-07 22:36:01 +00:00
|
|
|
default:
|
|
|
|
Throw( @"unsupported selected type index: generated1=%ld, generated2=%ld, stored=%ld",
|
|
|
|
(long)selectedGenerated1Index, (long)selectedGenerated2Index, (long)selectedStoredIndex );
|
|
|
|
}
|
2014-04-26 00:02:58 +00:00
|
|
|
}
|
2017-04-18 01:57:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
- (NSInteger)generated1SegmentIndexForType:(MPResultType)type {
|
2017-04-18 01:57:08 +00:00
|
|
|
|
|
|
|
switch (type) {
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplatePhrase:
|
2017-04-18 01:57:08 +00:00
|
|
|
return 0;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateName:
|
2017-04-18 01:57:08 +00:00
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return -1;
|
|
|
|
}
|
2014-04-20 15:09:49 +00:00
|
|
|
}
|
2012-06-08 21:46:13 +00:00
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
- (NSInteger)generated2SegmentIndexForType:(MPResultType)type {
|
2014-04-20 15:09:49 +00:00
|
|
|
|
|
|
|
switch (type) {
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateMaximum:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 0;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateLong:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 1;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateMedium:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 2;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateBasic:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 3;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplateShort:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 4;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeTemplatePIN:
|
2014-04-20 15:09:49 +00:00
|
|
|
return 5;
|
|
|
|
default:
|
2014-04-26 00:02:58 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-13 01:57:47 +00:00
|
|
|
- (NSInteger)storedSegmentIndexForType:(MPResultType)type {
|
2014-04-26 00:02:58 +00:00
|
|
|
|
|
|
|
switch (type) {
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeStatefulPersonal:
|
2014-04-26 00:02:58 +00:00
|
|
|
return 0;
|
2017-08-13 01:57:47 +00:00
|
|
|
case MPResultTypeStatefulDevice:
|
2014-04-26 00:02:58 +00:00
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return -1;
|
2014-04-20 15:09:49 +00:00
|
|
|
}
|
2012-06-04 09:27:02 +00:00
|
|
|
}
|
2012-06-05 22:59:09 +00:00
|
|
|
|
2012-06-04 09:27:02 +00:00
|
|
|
@end
|