RGLDocReaderRFIDDelegate
func didChipConnected()
Tells the delegate that the connection with the RFID chip is established.
func didChipConnected() {
print("Connected")
}
- (void)didChipConnected {
NSLog(@"Connected");
}
func didReceivedError(RFIDErrorCodes)
Tells the delegate an error appeared during the RFID chip processing.
func didReceivedError(_ errorCode: RFIDErrorCodes) {
print(errorCode.rawValue)
}
- (void)didReceivedError:(RGLRFIDErrorCodes)errorCode {
NSLog(@"%u", errorCode);
}