Search results for

“nfc”

1,191 results found

Post

Replies

Boosts

Views

Activity

Scanning NFC tag opens Apple Wallet inadvertently
Hi, So I'm developing an app that actively uses NFC. Anyways, we use NFC tags that have a firebase dynamic link, that basically primarily opens the link in-app as a universal link, but if the app isn't installed, its really just a web link that opens in Safari. So the user flow should really just be the iPhones detecting the NFC tags, showing the notification for the NFC detection to open the link in the app or Safari, and so on. The issue is that, consistently about half the time, scanning the NFC tags opens Apple Wallet/Pay, even prompting Face ID. Although even if Face ID is successful, no transaction actually occurs. But that's the thing, see the NFC tags are really just embedded with simple web links as NDEF, nothing to do with Apple Wallet or Pay whatsoever. I'm not sure if it's just supposed to be the default action on iOS to open Apple Wallet when NFC is detected, but anybody know a workaround for this? (I doubt configuring with support fo
1
0
1.8k
Oct ’21
SOLVED - Adding NFC Frameworks in Xcode
I have the current Xcode 9 beta, and I've created a completely new project based on Objective C so I can explore the NFC functionality.I've added the CoreNFC.framework in Linked FrameworksI've also added Privacy - NFC Scan Usage Description to my info.plistHowever as soon as I add:#import <CoreNFC/CoreNFC.h>I get an error - File Not Found CoreNFC.hAnyone know why I cannot add this framework to my project?[EDIT] Typical Apple the errors are not descriptive at all, you have to have a device plugged in, trying to build on simulator or even generic device for me fails to build the project. Once I plugged in the iPhone 7 the errors dissapeared [/EDIT]Plasma
1
0
1.3k
Jun ’17
CoreNFC framework missing in iPad and non NFC devices
I'm developing an app that between other things reads NFC tags using CoreNFC. I'm checking if NFC is available by using `NFCNDEFReaderSession.readingAvailable`. On iOS 11 it would return false allowing the app to run on devices that don't support NFC.On iOS all the betas up to date the app crashes while loading the dyld with an error saying that the image for CoreNFC framwork was not found.Is this a bug? Is there a new way of checking for NFC?It works on the simulator. Crash only happens on divices not supporting NFC
3
0
3.7k
Jul ’18
whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement
We have been struggling to get support and answeres regarding this roadblock : Request in whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement for our iOS application Our application utilizes Core NFC to enable reading and writing of NFC tags, simplifying user interactions with NFC-enabled devices and services. The NDEF entitlement is essential for our app to deliver its core functionality effectively. Build Environment: Our app is developed and built using Xcode 16.4 on Codemagic’s cloud-based CI/CD platform, which utilizes a compatible macOS version (e.g., macOS Sonoma 14.4 or later). The app targets iOS 18 and uses Core NFC APIs for NDEF tag reading and writing. so far we cant get it to read or write as ios is restricking us
1
0
162
Jul ’25
Using Wallet.app to open doors with NFC reader
G'day. At my office the doors are locked with an NFC reader. We carry around a little NFC tag on our key chains which will read out a number and this then will open the door if the number matches a number in the database. I am tired of carrying around the tag, people keep loosing it, forgetting it and it would be nice to open the door using a Phone - which we tend to always have on us. So I used a credit card which is NFC enabled to readout the NFC information, added this number to the database and can now open doors using my credit card. This is pretty cool. If I forget my keys (most likely they will be on the desk but silly me left the desk without them), I may have my wallet with me. Then I tried Wallet.app on my iPhone and select the same credit card. However the door doesn't open. When looking in the door software I noticed that the tags will always transmit the same number. So does my credit card. However Wallet.app will read out 4 readings (or maybe just one very lon
37
0
112k
Jan ’21
NFC Missing required entitlement
Hi, I have created an application for NFC tag scanning and read the tag data. For that, i enabled the capability: NearField Communication Tag reading. Then I added 2 tag formats in the entitlement then i added info.plist: NFCReaderUsageDescription We need to use NFC com.apple.developer.nfc.readersession.felica.systemcodes 8005 8008 0003 fe00 90b7 927a 12FC 86a7 com.apple.developer.nfc.readersession.iso7816.select-identifiers D2760000850100 D2760000850101 but even though when i run the app and tap the nfc card im getting some error: NFCTag didBecomeActive 2025-08-29 19:08:12.272278+0530 SAFRAN_NFC[894:113090] NFCTag didDetectTags 2025-08-29 19:08:12.282869+0530 SAFRAN_NFC[894:113520] [CoreNFC] -[NFCTagReaderSession _connectTag:error:]:730 Error Domain=NFCError Code=2 Missing required entitlement UserInfo={NSLocalizedDescription=Missing required entitlement} 2025-08-29 19:08:12.284044+0530 SAFRAN_NFC[894:113090] NFCTag restarting polling 2025-08-29 19:08:12.372116+0530 SAFRAN_NFC[894:
1
0
229
Aug ’25
How to implement NFC Reader in SwiftUI?
Hi, does anyone know how to enable creating or configuring Near NFC Reader in SwiftUI? I've already added the capability, the permissions in info.plist, the entitlement, and the SwiftUI code, but without success. Here's the example code: class PaymentT2PViewModel: NSObject, ObservableObject { @Published var paymentT2PUIState: PaymentT2PUIState // MARK: - NFC Properties @Published var nfcMessage: String = .empty @Published var isNFCReading: Bool = false private var nfcSession: NFCTagReaderSession? init(paymentT2PUIState: PaymentT2PUIState) { self.paymentT2PUIState = paymentT2PUIState super.init() ) } func startNFCReading() { print(INICIO: startNFCReading llamado) guard NFCTagReaderSession.readingAvailable else { print(ERROR: NFC NO disponible en este dispositivo) Task { @MainActor in self.nfcMessage = NFC no disponible en este dispositivo } return } print(NFC disponible, creando sesión...) nfcSession = NFCTagReaderSession( pollingOption: [.iso14443, .iso15693, .iso1
0
0
323
Nov ’25
NFC reader session window Accessibility issue
Hey There,We are using NFC functionality in one of our solution. We are facing some issues with NFC reader session window which is given below:1. Accessibility issues with reader session alert messages :Once we get the window and voice over is turned on, window gets invalidate before voice over reads out the alert message.Could you please provide some solution on the above? as developers does not have control once the window is invalidated
0
0
329
Apr ’20
Scanning NFC tag opens Apple Wallet inadvertently
Hi, So I'm developing an app that actively uses NFC. Anyways, we use NFC tags that have a firebase dynamic link, that basically primarily opens the link in-app as a universal link, but if the app isn't installed, its really just a web link that opens in Safari. So the user flow should really just be the iPhones detecting the NFC tags, showing the notification for the NFC detection to open the link in the app or Safari, and so on. The issue is that, consistently about half the time, scanning the NFC tags opens Apple Wallet/Pay, even prompting Face ID. Although even if Face ID is successful, no transaction actually occurs. But that's the thing, see the NFC tags are really just embedded with simple web links as NDEF, nothing to do with Apple Wallet or Pay whatsoever. I'm not sure if it's just supposed to be the default action on iOS to open Apple Wallet when NFC is detected, but anybody know a workaround for this? (I doubt configuring with support fo
Replies
1
Boosts
0
Views
1.8k
Activity
Oct ’21
nfc read in the background iphone
Hey. I want to configure URL opening with nfc tags. But when I program tag, it doesn't work well in background reading mode. Or it doesn't work at all. Each iPhone is different. tag - iso 14443a NTAG 312 Am I using the wrong tags? Or do you need some other way to write the tag? What prevents you from reading the first time?
Replies
0
Boosts
0
Views
447
Activity
Dec ’20
How do I use Basic Access control in NFC?
I am reading an NFC tag that contains Basic Access Controlhttps://en.wikipedia.org/wiki/Basic_access_control My goal is to replicate the following Android app on iOShttps://play.google.com/store/apps/details?id=at.mroland.android.apps.nfctaginfo&hl=en
Replies
0
Boosts
0
Views
703
Activity
Jul ’17
Observe Notification Triggered By Scanning NFC
How can I observe notifications triggered by scanning NFC in backgroundMode, I want to customize notifications, add Gif or Image to notification content. because the merchants want to display their images when shopper take their iPhone near goods.
Replies
1
Boosts
0
Views
597
Activity
Jul ’24
SOLVED - Adding NFC Frameworks in Xcode
I have the current Xcode 9 beta, and I've created a completely new project based on Objective C so I can explore the NFC functionality.I've added the CoreNFC.framework in Linked FrameworksI've also added Privacy - NFC Scan Usage Description to my info.plistHowever as soon as I add:#import <CoreNFC/CoreNFC.h>I get an error - File Not Found CoreNFC.hAnyone know why I cannot add this framework to my project?[EDIT] Typical Apple the errors are not descriptive at all, you have to have a device plugged in, trying to build on simulator or even generic device for me fails to build the project. Once I plugged in the iPhone 7 the errors dissapeared [/EDIT]Plasma
Replies
1
Boosts
0
Views
1.3k
Activity
Jun ’17
CoreNFC framework missing in iPad and non NFC devices
I'm developing an app that between other things reads NFC tags using CoreNFC. I'm checking if NFC is available by using `NFCNDEFReaderSession.readingAvailable`. On iOS 11 it would return false allowing the app to run on devices that don't support NFC.On iOS all the betas up to date the app crashes while loading the dyld with an error saying that the image for CoreNFC framwork was not found.Is this a bug? Is there a new way of checking for NFC?It works on the simulator. Crash only happens on divices not supporting NFC
Replies
3
Boosts
0
Views
3.7k
Activity
Jul ’18
whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement
We have been struggling to get support and answeres regarding this roadblock : Request in whitelisting of the NFC Tag Reading and Writing (NDEF) entitlement for our iOS application Our application utilizes Core NFC to enable reading and writing of NFC tags, simplifying user interactions with NFC-enabled devices and services. The NDEF entitlement is essential for our app to deliver its core functionality effectively. Build Environment: Our app is developed and built using Xcode 16.4 on Codemagic’s cloud-based CI/CD platform, which utilizes a compatible macOS version (e.g., macOS Sonoma 14.4 or later). The app targets iOS 18 and uses Core NFC APIs for NDEF tag reading and writing. so far we cant get it to read or write as ios is restricking us
Replies
1
Boosts
0
Views
162
Activity
Jul ’25
NFC tag reader not functioning
IPhone 14 Pro - ios 17 Beta NFC tag reader no longer functioning as of ios15 update. I have updated to Beta 17 and still not working. Airfrop off, cellular data off and have completed several restarts. Any help with repairing is appreciated. Thank you.
Replies
0
Boosts
0
Views
873
Activity
Aug ’23
iPhone NFC enabled POS machine
I want an iOS application like apple pay/google pay where I can store my physical credit/debit cards. Upon taping on NFC enabled POS machine it should act as if a physical card is present.
Replies
0
Boosts
0
Views
683
Activity
May ’21
How Apple Pay work if the NFC is only a reader?
According with the CoreNFC it's only possible to read NFC Tag and not emulate it. Then, how is it possible for the iphone send the credit cart virtual code to the POS?
Replies
0
Boosts
0
Views
2.7k
Activity
Feb ’18
Using Wallet.app to open doors with NFC reader
G'day. At my office the doors are locked with an NFC reader. We carry around a little NFC tag on our key chains which will read out a number and this then will open the door if the number matches a number in the database. I am tired of carrying around the tag, people keep loosing it, forgetting it and it would be nice to open the door using a Phone - which we tend to always have on us. So I used a credit card which is NFC enabled to readout the NFC information, added this number to the database and can now open doors using my credit card. This is pretty cool. If I forget my keys (most likely they will be on the desk but silly me left the desk without them), I may have my wallet with me. Then I tried Wallet.app on my iPhone and select the same credit card. However the door doesn't open. When looking in the door software I noticed that the tags will always transmit the same number. So does my credit card. However Wallet.app will read out 4 readings (or maybe just one very lon
Replies
37
Boosts
0
Views
112k
Activity
Jan ’21
Write on multiple tags sequentially with NFC
Is it possible to write sequentially on multiple tags using NFC? e.g. I have 10 tags and in my app set the number of writing and pressing on a button start first writing on first tag. when wrote, start an other writting and so on....
Replies
0
Boosts
0
Views
904
Activity
Mar ’22
NFC Missing required entitlement
Hi, I have created an application for NFC tag scanning and read the tag data. For that, i enabled the capability: NearField Communication Tag reading. Then I added 2 tag formats in the entitlement then i added info.plist: NFCReaderUsageDescription We need to use NFC com.apple.developer.nfc.readersession.felica.systemcodes 8005 8008 0003 fe00 90b7 927a 12FC 86a7 com.apple.developer.nfc.readersession.iso7816.select-identifiers D2760000850100 D2760000850101 but even though when i run the app and tap the nfc card im getting some error: NFCTag didBecomeActive 2025-08-29 19:08:12.272278+0530 SAFRAN_NFC[894:113090] NFCTag didDetectTags 2025-08-29 19:08:12.282869+0530 SAFRAN_NFC[894:113520] [CoreNFC] -[NFCTagReaderSession _connectTag:error:]:730 Error Domain=NFCError Code=2 Missing required entitlement UserInfo={NSLocalizedDescription=Missing required entitlement} 2025-08-29 19:08:12.284044+0530 SAFRAN_NFC[894:113090] NFCTag restarting polling 2025-08-29 19:08:12.372116+0530 SAFRAN_NFC[894:
Replies
1
Boosts
0
Views
229
Activity
Aug ’25
How to implement NFC Reader in SwiftUI?
Hi, does anyone know how to enable creating or configuring Near NFC Reader in SwiftUI? I've already added the capability, the permissions in info.plist, the entitlement, and the SwiftUI code, but without success. Here's the example code: class PaymentT2PViewModel: NSObject, ObservableObject { @Published var paymentT2PUIState: PaymentT2PUIState // MARK: - NFC Properties @Published var nfcMessage: String = .empty @Published var isNFCReading: Bool = false private var nfcSession: NFCTagReaderSession? init(paymentT2PUIState: PaymentT2PUIState) { self.paymentT2PUIState = paymentT2PUIState super.init() ) } func startNFCReading() { print(INICIO: startNFCReading llamado) guard NFCTagReaderSession.readingAvailable else { print(ERROR: NFC NO disponible en este dispositivo) Task { @MainActor in self.nfcMessage = NFC no disponible en este dispositivo } return } print(NFC disponible, creando sesión...) nfcSession = NFCTagReaderSession( pollingOption: [.iso14443, .iso15693, .iso1
Replies
0
Boosts
0
Views
323
Activity
Nov ’25
NFC reader session window Accessibility issue
Hey There,We are using NFC functionality in one of our solution. We are facing some issues with NFC reader session window which is given below:1. Accessibility issues with reader session alert messages :Once we get the window and voice over is turned on, window gets invalidate before voice over reads out the alert message.Could you please provide some solution on the above? as developers does not have control once the window is invalidated
Replies
0
Boosts
0
Views
329
Activity
Apr ’20