我已经在我的 IOS 应用程序中安装了 Metaio SDK,目前我在 MetaioCloudPluginViewController.h 中收到一个错误,即找不到矢量文件,我试图从我使用过这个 sdk 文件的 .m 或 .mm 更改类型但不幸的是,如果我这样做,则会出现新的错误,例如“指针和整数之间的比较”。我在构建设置中更改了一些东西,但结果仍然相同。
这是我包含在所述视图控制器中的文件。
#include <vector>
以下代码用于 viewcontroller.m 文件之一。
- (IBAction)onStartPushed:(id)sender {
// Create a new ARViewController. All channel details and properties are defined in that class.
// see ARViewController.mm for the implementation
ARViewController* metaioCloudPlugin = [[ARViewController alloc] init];
// present the viewcontroller
[self presentViewController:metaioCloudPlugin animated:YES completion:nil];
// release it, because it's retained as modalViewController
//[metaioCloudPlugin release];
}
谢谢你的时间。