Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/amazon-s3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
小牛和iOS 7的西奥斯错误_Ios_Iphone_Jailbreak_Theos - Fatal编程技术网

小牛和iOS 7的西奥斯错误

小牛和iOS 7的西奥斯错误,ios,iphone,jailbreak,theos,Ios,Iphone,Jailbreak,Theos,我设置了theos并进行越狱调整。。我在网上看到,rpetrich的标题只与他的theos fork兼容。 因此,我从github克隆了他的theos fork,并将其标题转储到/include文件夹中 然后,我必须将ldid和libsubstander.dylib添加到theos文件夹中,我按照 然后我按照教程做了一个简单的调整 信息:我正在尝试使用iOS7 SDK在mavericks上运行此功能 问题: 我完全遵循了教程!但出于某种原因,我得到了这个错误: Sahils-MacBook-Pr

我设置了theos并进行越狱调整。。我在网上看到,rpetrich的标题只与他的theos fork兼容。 因此,我从github克隆了他的theos fork,并将其标题转储到
/include
文件夹中

然后,我必须将ldid和libsubstander.dylib添加到theos文件夹中,我按照

然后我按照教程做了一个简单的调整

信息:我正在尝试使用iOS7 SDK在mavericks上运行此功能

问题: 我完全遵循了教程!但出于某种原因,我得到了这个错误:

Sahils-MacBook-Pro:welcomewagon Sahil$ make
/Users/Sahil/Documents/tweaks/welcomewagon/theos/makefiles/targets/Darwin/iphone.mk:48:               Deploying to iOS 3.0 while building for 6.0 will generate armv7-only binaries.
Making all for tweak WelcomeWagon...
make[2]: Nothing to be done for `internal-library-compile'.
这甚至意味着什么?>
对于“内部库编译”什么都不做。

我的代码是:

Tweak.xm

#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

无需对“内部库编译”执行任何操作。
不是错误。这意味着对于库编译步骤,没有什么可以做的


这是GNU make告诉您的调整已经编译,并且自上次编译以来没有任何更改。“无需执行任何操作”。

对“内部库编译”无需执行任何操作。
不是错误。这意味着对于库编译步骤,没有什么可以做的

这是GNU make告诉您的调整已经编译,并且自上次编译以来没有任何更改。没有什么可以做的

include theos/makefiles/common.mk

ARCHS = armv7

TWEAK_NAME = WelcomeWagon
WelcomeWagon_FILES = Tweak.xm
WelcomeWagon_FRAMEWORKS = UIKit


include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 SpringBoard"