KKPasscodeLock icon indicating copy to clipboard operation
KKPasscodeLock copied to clipboard

Couldn't call lockscreen from app delegate

Open kalaichelvan opened this issue 11 years ago • 2 comments

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;

    dispatch_async(dispatch_get_main_queue(),^ {
        UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
    
        nav.navigationBar.tintColor = _navigationController.navigationBar.tintColor;
        nav.navigationBar.translucent = _navigationController.navigationBar.translucent;
        nav.navigationBar.opaque = _navigationController.navigationBar.opaque;
        nav.navigationBar.barStyle = _navigationController.navigationBar.barStyle;
    
    
        [_navigationController presentViewController:nav animated:YES completion:nil];
    }); 
    

    } }

  • (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]; }

kalaichelvan avatar Mar 14 '13 14:03 kalaichelvan

@vinhnx I managed to solve the problem. will update the code later when I back to my computer. So others can benefit from it.

kalaichelvan avatar May 16 '13 03:05 kalaichelvan

I still can't do it =[

ClickedApps avatar Sep 11 '13 05:09 ClickedApps