我正在尝试使用 CoreMotion 框架并在我越狱的 iphone4 上使用 theos 进行编译。我在将 Twitter.framework 添加到 iPhone 上的 Theos 中注意到需要修改 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
有什么建议么?
谢谢,-迈克