• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - ZBarSDK 不要关闭 viewController

[复制链接]
菜鸟教程小白 发表于 2022-12-12 11:57:57 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在我的应用程序中使用 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-推荐答案


... 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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap