AR位置基于Iphone应用程序错误

时间:2014-06-03 20:02:15

标签: ios iphone objective-c augmented-reality

我正在使用https://github.com/markrickert/iPhone-AR-Toolkit

创建基于AR的定位iphone应用

我遇到了这些错误,不知道如何修复它。请有人帮助我。使用演练和正确的代码

图片http://i60.tinypic.com/2i9p8c0.png

的链接

2 个答案:

答案 0 :(得分:0)

似乎很简单但只是检查你是否导入了.h文件??

#import "ARKit.h"

答案 1 :(得分:-1)

“使用未声明的标识符_arViewController”。要解决此问题,只需在@interface上添加属性ARViewController *arViewController;

@interface ScanmarksViewController() { ARViewController *_arViewController; } @end

@interface ScanmarksViewController() @property (strong, nonatomic) ARViewController *arViewController; @end

无论你喜欢什么。