如何创建一个基本的MobileSubstrate调整

时间:2012-02-19 20:49:53

标签: iphone cydia cydia-substrate

我想知道如何制作一个基本的“Hello,World!” MobileSubstrate调整。

3 个答案:

答案 0 :(得分:2)

Getting Started将帮助您设置开发环境。这个IPF将帮助您了解构建调整/应用,并且您可以查看我的github代码示例。

答案 1 :(得分:0)

我在另一个帖子中写了一个答案,显然有些人非常喜欢;看看here

尽管如此,@ EvilPenguin的回答是完全正确的,我只是在这里和那里解释了几件事,但它最终会将你重定向到同一个地方。

答案 2 :(得分:0)

#import <SpringBoard/SpringBoard.h> // for SBScreenFlash
%hook SBAwayLockBar
-(void)unlock // the method you’re hooking
{
 %orig;
[[%c(SBScreenFlash) sharedInstance] flash];
}
%end

如果您使用Slider解锁设备,它将截屏您的屏幕。它不是一个好的调整,但它只是你要求的。

 #import <SpringBoard/SpringBoard.h> // for SBScreenFlash
    %hook SBAwayLockBar
    -(void)unlock // the method you’re hooking
    {
     %orig;
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hello World!" message:@"my first Tweak" delegate:nil cancelButtonTitle:@"Cool" otherButtonTitles:nil];
[alert show];
[alert release];
    }
    %end

这会提示你告诉你一个警告世界;) 玩得开心