【发布时间】:2014-01-03 08:26:42
【问题描述】:
我是 jailbreak tweaks 开发的新手,我正在使用 theos 开发我的调整,但是当我使用 make 命令编译调整时遇到了一些问题。
基本上,我用 class-dump-z 转储了所有 IOS 7 SpringBoard 标头,并将它们全部放在 theos/include 文件夹中。我意识到有一个名为 XXUnknownSuperClass 的类,当我编译调整时,我从该类中得到了一些错误。
/theos/include/Spring/SBUIAnimationController.h:8:9: error:
'XXUnknownSuperclass.h' file not found with <angled> include; use "quotes"
instead
#import <XXUnknownSuperclass.h> // Unknown library
^~~~~~~~~~~~~~~~~~~~~~~
"XXUnknownSuperclass.h"
/theos/include/Spring/XXUnknownSuperclass.h:14:12: error:
cannot find interface declaration for 'XXUnknownSuperclass'
@interface XXUnknownSuperclass (SBApplicationAdditions)
fatal error: too many errors emitted, stopping now [-ferror-limit=]
我的下一个问题是当SpringBoard 上的应用程序图标被点击时,我可以挂钩SBIconViewDelegate 以运行自定义方法吗?
非常感谢您的帮助!
【问题讨论】: