我正在尝试让 theos 在 OSX Mavericks 上工作。我最近购买了一部 iPhone 5s,然后越狱了它。现在我正在尝试让 Theos 工作,以便我可以再次开始进行一些调整。我让它在 OSX Lion 和 IOS 5 和 6 上工作。我有一个非常简单的程序,它应该在应用程序启动时显示 UIAlert。问题是,当我运行 make 命令以尝试编译我的代码时,我收到此错误:

Making all for tweak test...
 Preprocessing Tweak.xm...
 Compiling Tweak.xm...
 Linking tweak test...
Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_UIAlertView", referenced from:
      objc-class-ref in Tweak.xm.b0410391.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [obj/test.dylib.1cc22e7c.unsigned] Error 1
make[1]: *** [internal-library-all_] Error 2
make: *** [test.all.tweak.variables] Error 2
Williams-MacBook-Pro-2:test williamfsmillie$

这是我的 Tweak.xm 代码:
%hook SBApplicationIcon

-(void)launch{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"TEST" message:@"message...." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
    [alert show];
    [alert release];
    %orig;
}

%end

还有我的makefile:
export SDKVERSION=7.0

include theos/makefiles/common.mk

TWEAK_NAME = test
test_FILES = Tweak.xm
ARCHS = armv7 arm64
test_FRAMEWORKS = UIKit

include $(THEOS_MAKE_PATH)/tweak.mk

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

谢谢!

最佳答案

这是一个老问题,但我仍然认为我应该为有同样问题的人回答。您需要调用 objc_getClass 才能使其工作,如下所示:

UIAlertView *alert = [[objc_getClass("UIAlertView") alloc] initWithTitle:@"TEST" message:@"message...." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

请注意,这在作业的左侧不是必需的。

关于objective-c - armv7 和 arm64 的 Theos,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20942087/

10-09 13:23