我在iOS应用程序中使用Vuforia SDK(版本6.2.9)。
一切正常,但是当应用程序从后台进入时出现错误。

运行VUFORIA的 View Controller 正在侦听 UIApplicationWillResignActiveNotification UIApplicationDidBecomeActiveNotification 通知。
对于UIApplicationWillResignActiveNotification暂停AR,对于UIApplicationDidBecomeActiveNotification则恢复AR。

// we use the iOS notification to pause/resume the AR when the application goes (or come back from) background

[[NSNotificationCenter defaultCenter]
 addObserver:self
 selector:@selector(pauseAR)
 name:UIApplicationWillResignActiveNotification
 object:nil];

[[NSNotificationCenter defaultCenter]
 addObserver:self
 selector:@selector(resumeAR)
 name:UIApplicationDidBecomeActiveNotification
 object:nil];

这些是方法
- (void) pauseAR {
   NSError * error = nil;
   if (![vapp pauseAR:&error]) {
      NSLog(@"Error pausing AR:%@", [error description]);
   }
}

- (void) resumeAR {

    NSError * error = nil;
    if(! [vapp resumeAR:&error]) {
        NSLog(@"Error resuming AR:%@", [error description]);
    }

    // on resume, we reset the flash
    Vuforia::CameraDevice::getInstance().setFlashTorchMode(false);

    [self handleRotation:self.interfaceOrientation];
}

当我返回扫描模式时,从后台进入应用程序后,相机被冻结,并出现错误
找不到带有CAEAGLLayer或CAMetalLayer图层类的UIView来响应选择器renderFrameVuforia
2017-07-17 11:13:01.187406+0200 App[8689:2961061] frame: {{0, 0}, {375, 667}}
2017-07-17 11:13:01.243707+0200 App[8689:2961061] DEBUG/AR(8689) Could not find a UIView with CAEAGLLayer or CAMetalLayer layer class that responds to selector renderFrameVuforia
2017-07-17 11:13:01.253958+0200 App[8689:2961061] Vuforia Library version 6.2.9
2017-07-17 11:13:01.731099+0200 App[8689:2961061] AR View: Rotating to Portrait
2017-07-17 11:13:01.731406+0200 App[8689:2961061] frame: {{0, 0}, {375, 667}}
2017-07-17 11:13:01.731562+0200 App[8689:2961061] VideoBackgroundConfig: size: 750,1334
2017-07-17 11:13:01.731589+0200 App[8689:2961061] VideoMode:w=1280 h=720
2017-07-17 11:13:01.731611+0200 App[8689:2961061] width=750.000 height=1334.000
2017-07-17 11:13:01.731638+0200 App[8689:2961061] ViewPort: X,Y: 0,0 Size X,Y:750,1334
2017-07-17 11:13:02.598959+0200 App[8689:2962160] INFO/AR(8689) 2017-07-18 11:13:02: Completed CloudReco transaction with ID '6f5c61ecc07741a7b652242abf909479'
2017-07-17 11:13:02.843834+0200 App[8689:2961061] frame: {{0, 0}, {375, 667}}
2017-07-17 11:13:02.844215+0200 App[8689:2961061] frame: {{0, 0}, {375, 667}}
2017-07-17 11:13:02.860971+0200 App[8689:2961061] DEBUG/AR(8689) UIView has CAEAGLLayer layer class
2017-07-17 11:13:02.861114+0200 App[8689:2961061] DEBUG/AR(8689) UIView does not respond to selector renderFrameVuforia
2017-07-17 11:13:02.861191+0200 App[8689:2961061] DEBUG/AR(8689) UIView has CAEAGLLayer layer class
2017-07-17 11:13:02.861222+0200 App[8689:2961061] DEBUG/AR(8689) UIView does not respond to selector renderFrameVuforia

谢谢你的帮助!

最佳答案

您使用哪种方法调用pauseAR()

当弹出相机冻结的ViewController(拥有EAGLView)时,我遇到了相同的问题。

我将pauseAR()中的viewWillDisappear()resumeAR()中的viewWillAppear()称为,因为问题出来了,EAGLView中的委托(delegate)方法renderFrameVuforia()从未被调用,我认为这是导致问题的原因:



因此,我查看了Vuforia开发人员库,发现:



我将名为position的resumeAR()方法更改为viewDidAppear(),一切正常进行。希望这可以帮到你。

关于c++ - 从后台进入iOS Vuforia错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45140805/

10-09 01:02