Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我需要扫描条形码。为此,我正在使用 iPhone 附带的 Linea pro 条码扫描设备。我需要通过代码知道设备的存在。可能吗?我是目标 C 的新手。帮我解决这个问题。
谢谢你。
对的,这是可能的。
您所要做的就是:
int lineaStatus = [[Linea sharedDevice] connstate];
他们只是将它们与这样的不同连接状态进行比较。
if(lineaStatus == CONN_DISCONNECTED) { //Device is connected } else if(status == CONN_CONNECTED) { //Device is disconnected. }