菜鸟教程小白 发表于 2022-12-12 11:57:57

ios - ZBarSDK 不要关闭 viewController


                                            <p><p>我在我的应用程序中使用 ZBarSDK (<a href="http://zbar.sourceforge.net/iphone/" rel="noreferrer noopener nofollow">http://zbar.sourceforge.net/iphone/</a>)。它运行良好且速度非常快,但我发现了一个问题。
我在控制台中收到此警告,并且扫描仪 viewController 永远不会关闭。只有当我尝试扫描我已经关注的条形码时才会发生这种情况。我的意思是,当我按下打开阅读器 ViewController 的按钮,然后将相机聚焦在条形码所在的位置时,它工作正常, ViewController 消失,我得到了代码。但问题是,当我已经将 iPad 对准条形码,然后按下阅读器按钮时。阅读器 viewController 出现了,我得到了代码,但是 viewController 没有被关闭,我得到了这个警告:</p>

<p><strong>警告:在演示或关闭过程中尝试从 ViewController 关闭!</strong></p>

<p>这是使用的代码:</p>

<pre><code>- (void)escanearCodigo
{
    ZBarReaderViewController *escanearVC = ;
    escanearVC.readerDelegate = self;
    escanearVC.supportedOrientationsMask = ZBarOrientationMaskAll;

    // Presentar pantalla escaneo
    ;
}

- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
    // Obtener el resultado del escaneo
    id&lt;NSFastEnumeration&gt; results = ;
    ZBarSymbol *symbol = nil;
    for(symbol in results)
      //Almacenar el codigo de barras
      break;

    NSLog(@&#34;Code: %@&#34;, symbol.data);

    ;
}
</code></pre>

<p>希望我已经解释清楚了:)</p>

<p>提前致谢。</p>

<p><strong>更新:</strong>
到目前为止,最好的“半解决方案”是下一个:
将 didFinishPickingMediaWithInfo 代码放在 if 语句中,以防止在 viewController 尚未出现时执行此代码(我认为):</p>

<pre><code>- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
    if (!) {
      // Obtener el resultado del escaneo
      id&lt;NSFastEnumeration&gt; results = ;
      ZBarSymbol *symbol = nil;
      for(symbol in results)
            //Almacenar el codigo de barras
            break;

      ;

    }

}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><blockquote>
<p>... but I need to focus another area (without barcode) and then focus to the barcode area to scan it. </p>
</blockquote>

<p>由于警告与 ZBarReaderViewController 的呈现和解除有关,因此您应该只将 <code>dismissViewControllerAnimated:completion:</code> 调用封装在 if-else-block 中。这是为了防止 ZBars 性能受到您所描述的影响。此外,如果演示尚未结束,您可以延迟通话。</p>

<p>例如:</p>

<pre><code>if (!) {
    ;
}else{
    ;
}
</code></pre>

<p>然后在 <code></code>:</p>

<pre><code>- (void) dismissReader
{
      ;
}
</code></pre>

<p><strong>注意</strong>:0.7秒的延迟时间是任意的,可能会根据动画的持续时间而有所不同。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - ZBarSDK 不要关闭 viewController,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17259855/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17259855/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - ZBarSDK 不要关闭 viewController