In my app Socket Mobile Scanner is integrated to scan inventory items, my requirement is to stop scanner's scanning until the app search/check items existence.
If the recent items is not valid item, Scanner should stop scanning.
I used below code :
/// here scanApiHelper is instance of ScanApiHelper
scanApiHelper?.pop(self)
scanApiHelper?.close()
there is a data confirmation mode that you can use which will cover this scenario. In this mode, the trigger is lock for a certain time unless you explicitly acknowledge the data from the app. The trigger lockout time can be configured. The other possibility is to disable the trigger temporally and re-enable it when your app is ready.
Have a look at the github singleentry-ios (https://github.com/SocketMobile/singleentryswift-ios) it has a code example of Data Confirmation :
The scanner needs to be configured once to this mode:
I hope this helps.