我的 iphone 应用程序已越狱,我不在乎我的应用程序是否被应用商店拒绝。
我希望DevicePINController
在我的程序中使用私有 API。
我最近发现了名为 的私有 API DevicePINController
,但是它不能正常工作。该应用程序运行,除了它的方法之外,所有其他方法都不执行任何操作。它的BOOL
方法总是返回 false。设置方法不做任何事情。
有谁知道设备引脚控制器需要哪些权利权限?
编辑:代码
id away = [[objc_getClass("DevicePINController") alloc]init];
NSLog( [away simplePIN] ? @"YES":@"NO" );
NSLog( [away _isBlocked] ? @"YES":@"NO" );
NSLog( [away _attemptValidationWithPIN:@"1234"] ? @"YES":@"NO" );
NSLog(@"%d",[away _unblockTime] );
NSLog(@"%@",[away blockedStateKey] );
NSLog(@"%@",[away blockTimeIntervalKey] );
NSLog(@"%@",[away failedAttemptsKey] );
NSLog(@"%d",[away pinLength] );
NSLog(@"%@",[away stringsBundle] );
NSLog(@"%@",[away stringsTable]);
每个方法调用都返回错误的答案。有些只返回null。布尔总是返回 NO。