ios - Epson TM-T88V-i 只打印一次
<p><p>我的 Epson TM-T88V-i 打印机有问题,我可以第一次打印,但总是收到 <code>EPOS2_ERR_CONNECT</code> 错误。</p>
<p>我使用 <a href="https://download.epson-biz.com/modules/pos/index.php?page=prod&pcat=52&pid=2773" rel="noreferrer noopener nofollow">SDK</a> 中的示例它有这个问题。</p>
<p>这是代码:</p>
<pre><code>int result = EPOS2_SUCCESS;
if (self.printer == nil) {
return NO;
}
result = ;
if (result != EPOS2_SUCCESS) {
return NO;
}
result = ;
if (result != EPOS2_SUCCESS) {
;
return NO;
}
</code></pre>
<p>在第一次之后,它在连接方法之后使用 <code>EPOS2_ERR_CONNECT</code></p>
<p>我必须重新启动打印机才能重新打印。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>几个月前我也遇到过同样的问题...</p>
<p>对于 TM-T88V-i 打印机,您必须使用另一种语法进行连接:
使用 <code><connection type>:<identifier>[<device ID>]</code> 而不是 <code><connection type>:<identifier></code></p>
<p>所以你的代码是这样的:</p>
<pre><code>result = " timeout:EPOS2_PARAM_DEFAULT];
</code></pre>
<p>注意local_printer 是默认标识符。</p></p>
<p style="font-size: 20px;">关于ios - Epson TM-T88V-i 只打印一次,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/51390183/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/51390183/
</a>
</p>
页:
[1]