- You can define here where the NDEF Message can be stored on a reading operation. It should be the first action to perform while using NFC.
- When the device gets close to an NFC tag or another NFC device that is publishing an NDEF message, your device will receive that message and will be saved in the specified Target of Message, also, the event NFC Message Received will be triggered.
- On iOS, it is not possible to simultaneously handle NDEF and HF tags, so, if Target of Message is filled in, Kalipso will use NFC reader in NFC NDEF mode, if it is empty, it will use the NFC reader in plain HF mode.
- On iOS, the operating system does not allows us to control the user interface, it will always show a popup with the message specified. This means the application logic may not be compatible with Andoid/Win10. When NFCConnect is called, this popup will how up, and Kalipso events will be triggered normally, but you will be unable to show MessageBoxes or other forms until you call NFCDisconnect. So for example if you need to read an HF tag you would have to call NFCConnect and on the NFC Card Detected event you would have to call NFCReadTag, and then NFCDisconnect to close the system popup dialog so you can show the user the result of the Read Operation.
|