各位,
我遇到一个总是,app在下载的时候,需要越长时间, 但是机器会锁屏断网, 导致下载中断, 能让机器不锁屏,断网么?
你指的是在AppStore里下载App的时候,机器会自动锁屏?还是在Cydia里下载的时候?
插件 insomnia Pro 可以保持网络;
不锁屏 自动解锁都可以 写个HOOK 我翻翻以前写的代码
@interface SBLockScreenManager : NSObject
+(id)sharedInstance;
- (void)startUIUnlockFromSource:(int)source withOptions:(id)opt;
@end
%hook SBLockScreenViewController
%new(v@:@)
-(void) performDismiss:(NSTimer *)timer{
[objc_getClass(“SBLockScreenManager”) sharedInstance] startUIUnlockFromSource:0 withOptions:nil];
}
-(void)viewDidAppear:(BOOL)arg1{
%orig;
[NSTimer scheduledTimerWithTimeInterval:5.0f target:self selector:@selector(performDismiss:) userInfo:nil repeats:NO];
}
%end
1 个赞
一旦锁屏 就马上解锁
之前调用SBLockScreenManager link失败;看了您的帖子,发现可以用objc_getClass(“SBLockScreenManager”)获取类;真是受益匪浅。感谢。
客气客气
startUIUnlockFromSource:(int)source
这个source是锁屏密码吗?感觉hook这个可以破锁屏密码=-=