在 iOS 上调用 SpringBoard 方法

发布于 2024-12-25 10:39:20 字数 276 浏览 1 评论 0原文

我正在开发一个调整,但遇到了问题。我创建了一个 PreferenceBundle,在该包中我需要调用 SpringBoard 方法,但结果始终为 null。有没有办法可以调用 SBApplication 方法?

SBApplication *app =[[objc_getClass("SBApplicationController") sharedInstance] applicationWithDisplayIdentifier:identifier];

I am developing a tweak and I've got a problem. I created a PreferenceBundle and in the bundle I need to call a SpringBoard method, but the results is always null. Is there a way I can call an SBApplication method?

SBApplication *app =[[objc_getClass("SBApplicationController") sharedInstance] applicationWithDisplayIdentifier:identifier];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弥繁 2025-01-01 10:39:20

此链接将让您深入了解如何在 iPhone 中使用 PreferenceBundle...

http://www.skylarcantu.com/blog/2009/08/12/creating-a-preferencebundle-for-the-iphone/

http://iphoneincubator.com/blog/tutorial/how -to-create-an-iphone-preferences-file

编辑:

您可以尝试此代码吗:

Class SBApplicationController = objc_getClass("SBApplicationController");
    id controller = [SBApplicationController sharedInstance];
    for (NSString *appId in [controller allBundleIdentifiers]) { 
        NSLog ([NSString stringWithFormat:@"bundle: %@", appId]);
        NSArray *apps = [controller applicationsWithBundleIdentifier:appId];
        if ([apps count] > 0) { 
            id app = [apps objectAtIndex:0]; 
            [self indexApp:app withName:[app displayName]];
        }
    }

或尝试下面的链接...

http://pastebin.com/dQK5AXjD

This link will give you some insight of how to use PreferenceBundle in iPhone...

http://www.skylarcantu.com/blog/2009/08/12/creating-a-preferencebundle-for-the-iphone/

http://iphoneincubator.com/blog/tutorial/how-to-create-an-iphone-preferences-file

EDIT :

Can you try this code :

Class SBApplicationController = objc_getClass("SBApplicationController");
    id controller = [SBApplicationController sharedInstance];
    for (NSString *appId in [controller allBundleIdentifiers]) { 
        NSLog ([NSString stringWithFormat:@"bundle: %@", appId]);
        NSArray *apps = [controller applicationsWithBundleIdentifier:appId];
        if ([apps count] > 0) { 
            id app = [apps objectAtIndex:0]; 
            [self indexApp:app withName:[app displayName]];
        }
    }

or try below link...

http://pastebin.com/dQK5AXjD

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文