I’m creating a mobile application that fetched data based on ID which generated on PC. I want to pass this ID as a text string from my NFC device which supports read and write to an iPhone device when the user touch on the NFC device. Is this possible? I’m using Acr 122u as an NFC device.
Is this possible to send NFC signal from NFC read/writer to Iphone
6.6k Views Asked by Tuan Ngo At
2
There are 2 best solutions below
3
Mac3n
On
From iOS 13 SDK apple add NFC for read tag and you can use NDEF type message.
refer to this link for more sample code https://developer.apple.com/documentation/corenfc/building_an_nfc_tag-reader_app
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
Related Questions in NFC
- Android NFCA issues
- Access protection for NFC Tags
- Android makeReadOnly() throws IOException
- NFC Bluetooth handover - WITHOUT user confirmation
- Using external ACR1222L to get NDEF Messages w/ nfctools OR nxpnfclib
- node-hid not showing all USB devices
- How to convert a Chinese string to english for windows phone store apps[Javascript]
- How can I prevent (overwriting or format or cloning anything else) my NFC TAG?
- Android HCE issue
- onNewIntent() being called in onResume() multiple times
- When app receives NFC data it opens "New Tag collected"
- Android NFC passing single parameter when starting application
- How to mock a Android NFC Tag object for unit testing
- Short range communication (Bluetooth, NFC ?)
- NFC Write Sample
Related Questions in ACR122
- node-hid not showing all USB devices
- How to a send SNEP GET request from Android
- Libnfc How to read NFC card content?
- Ultralight C, Smartcardio and ACR122
- ACR122u help in reading the card
- NFC ACR122 TgInitAsTarget, initiator releasing target
- Writing and reading nfc cards in ndef message in windows form application
- ACR122U Answer D5 41 13 90 00 to mifare's read command
- ACR122U-A9 Reading NFC card 7 byte UID
- ACS ACR122U Tag display on screen using Python NFC tool library
- libnfc: Write and read back custom data from NTAG
- How to read NFC tag data with raspberry pi and ACR122U
- Connecting to ACR122 on centos
- ACR122U - Read NFC data sent from android phone
- Transfer data to PC from android device via NFC
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The short answer is it is not possible with iOS
There are 3 basic modes of operation of NFC devices - Reader/Writer, Peer to Peer and Host Card emulation (HCE).
iOS only supports Reader/Writer for developers (though HCE is used by Apple for their wallet stuff)
Android supports Reader/Writer, Host Card Emulation and Peer to Peer (Up to Android 10 when it was removed)
Most USB readers I've seen only support Reader/Writer.
To use NFC without a real NFC Card
Both devices must support Peer to Peer
Or
One must support Reader/Writer and the other must support Host Card Emulation.