Skip to content

Instantly share code, notes, and snippets.

@Esquilli
Created April 17, 2020 15:01
Show Gist options
  • Save Esquilli/f8e759d03a2ca466a8e01a21ffbd480e to your computer and use it in GitHub Desktop.
Save Esquilli/f8e759d03a2ca466a8e01a21ffbd480e to your computer and use it in GitHub Desktop.
Toggle iOS biometrics
@try {
SBLockScreenManager *man = [%c(SBLockScreenManager) sharedInstance];
toggleBiometric = <value from prefs>;
if ([man respondsToSelector:@selector(setBiometricAutoUnlockingDisabled:forReason:)]) {
[man setBiometricAutoUnlockingDisabled:toggleBiometric forReason:@"com.esquilli.lisa"];
}
} @catch (NSException *e) {
// wut.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment