我在我的应用程序中使用 ZBarSDK (http://zbar.sourceforge.net/iphone/)。它运行良好且速度非常快,但我发现了一个问题。
我在控制台中收到此警告,并且扫描仪 viewController 永远不会关闭。只有当我尝试扫描我已经关注的条形码时才会发生这种情况。我的意思是,当我按下打开阅读器 View Controller 的按钮,然后将相机聚焦在条形码所在的位置时,它工作正常, View Controller 消失,我得到了代码。但问题是,当我已经将 iPad 对准条形码,然后按下阅读器按钮时。阅读器 viewController 出现了,我得到了代码,但是 viewController 没有被关闭,我得到了这个警告:
警告:在演示或关闭过程中尝试从 View Controller 关闭!
这是使用的代码:
- (void)escanearCodigo
{
ZBarReaderViewController *escanearVC = [ZBarReaderViewController new];
escanearVC.readerDelegate = self;
escanearVC.supportedOrientationsMask = ZBarOrientationMaskAll;
// Presentar pantalla escaneo
[self presentViewController:escanearVC animated:YES completion:nil];
}
- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
// Obtener el resultado del escaneo
id<NSFastEnumeration> results = [info objectForKey: ZBarReaderControllerResults];
ZBarSymbol *symbol = nil;
for(symbol in results)
//Almacenar el codigo de barras
break;
NSLog(@"Code: %@", symbol.data);
[reader dismissViewControllerAnimated:YES completion:nil];
}
希望我已经解释清楚了
提前致谢。
更新:
到目前为止,最好的“半解决方案”是下一个:
将 didFinishPickingMediaWithInfo 代码放在 if 语句中,以防止在 viewController 尚未出现时执行此代码(我认为):
- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
if (![reader isBeingPresented]) {
// Obtener el resultado del escaneo
id<NSFastEnumeration> results = [info objectForKey: ZBarReaderControllerResults];
ZBarSymbol *symbol = nil;
for(symbol in results)
//Almacenar el codigo de barras
break;
[reader dismissViewControllerAnimated:YES completion:nil];
}
}
Best Answer-推荐答案 strong>
... but I need to focus another area (without barcode) and then focus to the barcode area to scan it.
由于警告与 ZBarReaderViewController 的呈现和解除有关,因此您应该只将 dismissViewControllerAnimated:completion: 调用封装在 if-else-block 中。这是为了防止 ZBars 性能受到您所描述的影响。此外,如果演示尚未结束,您可以延迟通话。
例如:
if (![reader isBeingPresented]) {
[self dismissReader];
}else{
[self performSelectorselector(dismissReader) withObject:nil afterDelay:0.7];
}
然后在 [self dismissReader] :
- (void) dismissReader
{
[_reader dismissViewControllerAnimated:YES completion:nil];
}
注意:0.7秒的延迟时间是任意的,可能会根据动画的持续时间而有所不同。
关于ios - ZBarSDK 不要关闭 viewController,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/17259855/
|