ios8.1,arm64..运行书上例子没反应

完全么效果啊…是因为IOS8方法变了么?
tweak----------------
%hook SpringBoard
-(BOOL)launchApplicationWithIdentifier:(id)identifier suspended:(BOOL)suspended
{
NSLog(@“GO”);
return %orig(@“com.apple.mobilephone”,suspended);

}
%end


MAKEFILE---------------------------------------

THEOS_DEVICE_IP=192.168.2.3
ARCHS = armv7 armv7s arm64
TARGET= iphone:8.1:7.1
include theos/makefiles/common.mk

TWEAK_NAME = succesOne
succesOne_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec “killall -9 SpringBoard”