使用frontDisplayDidChange在主屏幕上隐藏调整

时间:2017-08-14 02:33:25

标签: ios objective-c theos

这是我的代码。它符合正确但似乎没有做任何事情。

我一直在使用这里的信息 https://iphonedevwiki.net/index.php/SpringBoard

@interface SBApplication:NSObject
-(void) frontDisplayDidChange: (id) newDisplay;
@end

%hook SBApplication
- (void)frontDisplayDidChange: (id) newDisplay{
%orig;
if (newDisplay ==nil){
mainView.hidden =YES;
} else {
mainView.hidden=NO;
}
}

0 个答案:

没有答案