Skip to content
This repository was archived by the owner on May 13, 2019. It is now read-only.
This repository was archived by the owner on May 13, 2019. It is now read-only.

Couldn't call lockscreen from app delegate #29

Description

@kalaichelvan

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions