菜鸟教程小白 发表于 2022-12-12 17:50:34

ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整


                                            <p><p>我是第一次进行越狱调整开发,并在安装了 IOS 7.0.4 的 iPhone 5 上尝试一些非常简单的测试调整(基于一些教程)。我的调整编译、链接、打包,我可以安装在我的 iPhone 上。但是,我无法获得将 Hook 链接到 SBApplicationIcon 工作的非常基本的调整。另一方面,另一个在启动时与 SpringBoardHook 以执行相同操作(生成警报)的调整确实有效。发生什么了??为什么一个调整有效,而另一个无效。 IOS7 中的 SBApplicationIconheader 是否已更改?我有一个来自 rpetrich 存储库的 header 转储
对于不起作用的调整,我尝试在代码中添加 syslog 消息以查看代码是否已执行(在 iphone 上启用了 syslog),但没有任何反应。 </p>

<p><strong>无效的调整:</strong></p>

<pre><code>   #import &lt;SpringBoard/SpringBoard.h&gt;
    #import &lt;UIKit/UIKit.h&gt;

    %hook SBApplicationIcon
    -(void)launch
    {
    NSString *appName = ;
    NSString *message = ;
            UIAlertView *alert = [ initWithTitle:appName message:message delegate:self cancelButtonTitle:@&#34;OK&#34; otherButtonTitles:nil];
      ;
      ;
      %orig;
    }
    %end
</code></pre>

<p><strong>调整 <em></em> 工作:</strong></p>

<pre><code>#import &lt;SpringBoard/SpringBoard.h&gt;

%hook SpringBoard

-(void)applicationDidFinishLaunching:(id)application {
    %orig;

    UIAlertView *alert = [ initWithTitle:@&#34;Welcome&#34;
      message:@&#34;Welcome to your iPhone Brandon!&#34;
      delegate:nil
      cancelButtonTitle:@&#34;Thanks&#34;
      otherButtonTitles:nil];
    ;
    ;
}

%end
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>-(void)launch</code> 在 iOS7 中已更改为 <code>-(void)launchFromLocation:(int)location</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20891954/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20891954/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 无法连接到 SBApplicationIcon 以在 iPhone 5、IOS 7.0.4 上进行调整