我是第一次进行越狱调整开发,并在安装了 IOS 7.0.4 的 iPhone 5 上尝试一些非常简单的测试调整(基于一些教程)。我的调整编译、链接、打包,我可以安装在我的 iPhone 上。但是,我无法获得将 Hook 链接到 SBApplicationIcon 工作的非常基本的调整。另一方面,另一个在启动时与 SpringBoard Hook 以执行相同操作(生成警报)的调整确实有效。发生什么了??为什么一个调整有效,而另一个无效。 IOS7 中的 SBApplicationIcon header 是否已更改?我有一个来自 rpetrich 存储库的 header 转储
对于不起作用的调整,我尝试在代码中添加 syslog 消息以查看代码是否已执行(在 iphone 上启用了 syslog),但没有任何反应。
无效的调整:
#import <SpringBoard/SpringBoard.h>
#import <UIKit/UIKit.h>
%hook SBApplicationIcon
-(void)launch
{
NSString *appName = [self displayName];
NSString *message = [NSString stringWithFormat"The app %@ has been launched", appName, nil];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:appName message:message delegate:self cancelButtonTitle"OK" otherButtonTitles:nil];
[alert show];
[alert release];
%orig;
}
%end
调整 工作:
#import <SpringBoard/SpringBoard.h>
%hook SpringBoard
-(void)applicationDidFinishLaunchingid)application {
%orig;
UIAlertView *alert = [[UIAlertView alloc] initWithTitle"Welcome"
message"Welcome to your iPhone Brandon!"
delegate:nil
cancelButtonTitle"Thanks"
otherButtonTitles:nil];
[alert show];
[alert release];
}
%end
Best Answer-推荐答案 strong>
-(void)launch 在 iOS7 中已更改为 -(void)launchFromLocationint)location 。
关于ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20891954/
|