You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 13, 2019. It is now read-only.
(void)shouldEraseApplicationData:(KKPasscodeViewController*)viewController
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"You have entered an incorrect passcode too many times. All account data in this app has been deleted." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
(void)didPasscodeEnteredIncorrectly:(KKPasscodeViewController*)viewController
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"You have entered an incorrect passcode too many times." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
The text was updated successfully, but these errors were encountered:
I tried to use your KKPasscodeLock in my Project. Incorporated the settings view controller and passcode view controller successfully.
So far managed to setup everything. Can set passcode lock and can change as well.
But when i try to set in AppDelegate to display lock screen, it doesn't show up. therefore no passcode being asked after set.
Appreciate if someone could help.
below is my code in appdelegate.m
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[self customizeAppearance];
[self configureiPhoneTabBar];
// [MKiCloudSync start];
[[KKPasscodeLock sharedLock] setDefaultSettings];
[KKPasscodeLock sharedLock].eraseOption = NO;
return YES;
}
(void)applicationDidBecomeActive:(UIApplication *)application
{
if ([[KKPasscodeLock sharedLock] isPasscodeRequired]) {
KKPasscodeViewController *vc = [[KKPasscodeViewController alloc] initWithNibName:nil bundle:nil];
vc.mode = KKPasscodeModeEnter;
vc.delegate = self;
}
}
(void)shouldEraseApplicationData:(KKPasscodeViewController*)viewController
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"You have entered an incorrect passcode too many times. All account data in this app has been deleted." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
(void)didPasscodeEnteredIncorrectly:(KKPasscodeViewController*)viewController
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"" message:@"You have entered an incorrect passcode too many times." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
The text was updated successfully, but these errors were encountered: