我正在尝试使用CoreMotion框架,并在我的越狱iphone4上使用theos进行编译。我注意到在Add Twitter.framework to Theos on iPhone中需要修改makefile以包含必要的框架(我已经完成了)。我得到的错误是:
RootViewController.h:1:23:错误:CoreMotion / CoreMotion.h:没有这样的文件或目录
来自该行:
#import <CoreMotion/CoreMotion.h>
这就是我的makefile的样子:
include theos/makefiles/common.mk
APPLICATION_NAME = SensorTest
SensorTest_FILES = main.m SensorTestApplication.mm RootViewController.mm
SensorTest_FRAMEWORKS = UIKit CoreGraphics CoreMotion
include $(THEOS_MAKE_PATH)/application.mk
任何建议?
谢谢, -Mike