THEOS致命错误:<springboard springboard.h =“”>找不到文件</springboard>

时间:2014-09-26 13:57:55

标签: ios objective-c theos tweak springboard

当我尝试制作我的 tweak包时,我收到了一个错误:

    Tweak.xm:1:9: fatal error: 'SpringBoard/SpringBoard.h' file not found
    #import <SpringBoard/SpringBoard.h>
            ^
    1 error generated.
    make[2]: *** [obj/Tweak.xm.cf890db2.o] Error 1
    make[1]: *** [internal-library-all_] Error 2
    make: *** [SMSTrigger.all.tweak.variables] Error 2

我的 tweak.xml 文件包含:

#import <SpringBoard/SpringBoard.h>

%hook SpringBoard

-(void)applicationDidFinishLaunching:(id)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

我的 makefile 包含:

include theos/makefiles/common.mk

TWEAK_NAME = SMSTrigger
SMSTrigger_FILES = Tweak.xm
SMSTrigger_FRAMEWORKS = UIKIT



include $(THEOS_MAKE_PATH)/tweak.mk

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

我从一些研究中找到了答案。对于所有想知道如何修复的人:

从这里使用来自rpetrich存储库的SpringBoard标头https://github.com/rpetrich/iphoneheaders

下载这些标题并将它们放在/ var / theos / include中。 (如果您正在开发iDevice)。然后在顶部的tweak.xm中键入#import并尝试编译。