OStack程序员社区-中国程序员成长平台

标题: ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 17:50
标题: ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整

我是第一次进行越狱调整开发,并在安装了 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-推荐答案


-(void)launch 在 iOS7 中已更改为 -(void)launchFromLocationint)location

关于ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20891954/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4