Search results for

“nfc”

1,193 results found

Post

Replies

Boosts

Views

Activity

Does the PKPassLibraryRemotePaymentPassesDidChange notification inform my application when an NFC tag is read by a reader?
Greetings, Question 1: I'm currently working on implementing a feature that involves tracking NFC tag reading events. Specifically, I aim to monitor these events for passes that have been added to the wallet using my application. This way, I can gain insights into the interactions users have with these passes and provide enhanced functionality based on their usage patterns. Question 2: Is there a way to implement a restriction on NFC-based passes, allowing them to be used only once for a specific action or purpose? I'm looking to ensure that once a user utilizes the NFC feature associated with a pass, the pass becomes inactive for any future interactions, thereby enforcing a one-time use scenario.
0
0
401
Aug ’23
NFC background reading crashs ipod touch
Hi,i added some NFC background reading to my app. But when I try to deploy the app on the ipod touch it crashs directly. On the iPad and Simulator it works without problems, all the dont have NFC. I tried to add the canImport(CoreNFC) stuff, and also the do not embed CoreNFC.It crashs with this message:dyld: Library not loaded: /System/Library/Frameworks/CoreNFC.framework/CoreNFC Referenced from: /private/var/containers/Bundle/Application/4BD57EFD-C373-4B2E-993B-663A142995AA/nfcTest.app/nfcTest Reason: image not foundMessage from debugger: Terminated due to signal 6As soon as I have this function in my app delegate it stops working. Even its never called. #if canImport(CoreNFC) func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { guard userActivity.activityType == NSUserActivityTypeBrowsingWeb else { return false } // Confirm that the NSUserActivity object contains a valid NDE
1
0
914
Apr ’20
Apple Wallet VAS & NFC Entitlement for Approved Product Plan
So we are developing an NFC reader for a client and one of the requirements was Apple ECP. We submitted a product plan and it was approved and we were given access to the specific documentation for ECP. We are looking to only use Loyalty passes via NFC. Not Apple Pay. We wish to develop passes that have NFC capability and apparently you need another approval for NFC Entitlement. Apple just denied our application. No reason given, just denied. How are we suppose to develop a solution when we can only do one side of the development? Also we are seeing VAS mentioned and believe we also need access to this documentation as well, but no idea where to request it. Nothing in our developer portal or wpc portal. Can someone from Apple please steer us in the right direction. As we understand it we need: Approved hardware product plan (which we have) Access to ECP 2.0 documentation (which we have) Access to VAS protocol documentation (we don't have) NFC entitlement to be able
3
0
1.1k
Feb ’25
Background NFC Tag Reading in Airplane Mode?
Apple's docs for Background Tag Reading state clearly that: ...be aware there are times when the display is on and background tag reading is unavailable, such as if [...] Airplane mode is enabled. Is anyone aware of the actual reason behind this restriction? Consider these examples: User A visits a different country and doesn't have local cell service. They use WiFi to access the internet, but keep airplane mode on to avoid expensive roaming charges. They apparently need to pay roaming fees in order to scan an NFC tag. User B is actually on a plane (literally the reason for airplane mode). They strike up a conversation with their seatmate, who wants to share contact info using an NFC business card. It won't work until the flight lands. In both of these cases, airplane mode is restricting what seem to be harmless attempts to scan a tag. Further, users don't commonly understand this restriction, and I am at a loss for how to explain Apple's reasoning to frustrated customers. Does anyone have a
0
0
1.1k
Mar ’22
Reply to iOS 11 - write to nfc
It is a pity that writing NFC tags is not supported. Writing NFC tags can be very useful to push some configuration data to the device hosting the NFC chip (a WiFi password for example). Sometimes it is very difficult to understand what is the reasoning behind this kind of decisions.Thanks,Anna.
Topic: Programming Languages SubTopic: Swift Tags:
Jan ’18
Enable NFC Access for Argentina’s SUBE Transit App on iPhone
Hello Apple Developer Community and Apple Team, I want to raise awareness and gather support for an important feature request regarding NFC support on iPhone devices in Argentina. Millions of Argentinians use the official public transit card, SUBE, daily to pay for buses, subways, and trains. On Android devices, the SUBE app allows users to: • Check balance via NFC • Reload credit instantly • Confirm top-ups by holding the card near the phone • Use a digital version of the card (in some cases) However, iPhone users cannot use these NFC features because iOS currently does not allow third-party apps like SUBE to access the NFC chip fully. This limitation negatively impacts iPhone users, many of whom rely heavily on SUBE. I have submitted detailed feedback to Apple requesting the enablement of controlled NFC access for third-party transit apps in Argentina, starting with SUBE. I encourage fellow developers, users, and community members to support this request. Enablin
1
0
209
Jun ’25
Anyone know if Apple has published details on NFC features for iOS 12?
I saw that Apple is opening up NFC to allow phones to do things like open doors etc which means they are allowing a way to do card emulation. I cannot find any info on this on their site with exception of the keynote when they discussed this. Is this going to be included in CoreNFC or is this something that Apple Wallet will do? Basically looking for a starting point on this as we need the ability to connect to an NFC reader by tap of iPhone.
1
0
718
Jun ’18
Is it possible to raise Priority / Precedence of NFC Tasks over Network Function?
I'm facing issue on my NFC app such that the 'SendMiFareCommand()' API returns 'Tag Connection Lost' or 'Tag No Response' errors very frequently, especially on iPhone 12 and above, where 5G signal is weak. Since the issue doesn't appear on older iPhones or even on newer iPhones when they're put in flight mode, with exactly the same setup, we're certain that it has got to do something with the way iOS handles NFC function when 5G signal reception is poor. We even got this seconded from NFC tag manufacturers NXP and ST. So is there any way I can adjust priority / precedence of NFC function when 5G signal reception is poor? With 5G signal poor in almost all areas of the US as of now, this issue is pressing and affects the entire UX of my app.
0
0
560
Jan ’23
Regarding Reading NFC Core Information
I am developing an APP, scan and read NFC Tag information. I can only get the message in the NFC tag, but I cannot get the chip information. Or rather, the information obtained is incomplete. Look at the code: NFCNDEFReaderSession *session; - (void)readerSession:(NFCNDEFReaderSession *)session didDetectTags:(NSArray<__kindof id> *)tags API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos, macos, tvos) { NSLog(@call back ios13); if (tags.count > 1) { session.alertMessage = LocalizedString(@ErrorTips4); [session restartPolling]; return; } id firstTag = tags.firstObject; HBNFCNDEFTag *ndefTag = firstTag; NSLog(@ndefTag == %@, [ndefTag valueForKey:@_tag]); dispatch_async(dispatch_get_main_queue(), ^{ [self invalidateSession]; }); } Obtain datas: ndefTag == -BA5A89060AA01FAB { Tech=Unknown Type=Unknown ID=(null), NDEF=4, capacity=137, messageSize=45 } An Other: NFCTagReaderSession *tagSession; - (void)tagReaderSession:(NFCTagReaderSession *)session didDetectTags:(NSArray<__kindof id> *
1
0
510
Jul ’24
Does the PKPassLibraryRemotePaymentPassesDidChange notification inform my application when an NFC tag is read by a reader?
Greetings, Question 1: I'm currently working on implementing a feature that involves tracking NFC tag reading events. Specifically, I aim to monitor these events for passes that have been added to the wallet using my application. This way, I can gain insights into the interactions users have with these passes and provide enhanced functionality based on their usage patterns. Question 2: Is there a way to implement a restriction on NFC-based passes, allowing them to be used only once for a specific action or purpose? I'm looking to ensure that once a user utilizes the NFC feature associated with a pass, the pass becomes inactive for any future interactions, thereby enforcing a one-time use scenario.
Replies
0
Boosts
0
Views
401
Activity
Aug ’23
Is this compatible with IOS NFC: MIFARE Classic 1K Chip 13.56mhz
Is this chip compatible with NFC.After using application NFC Tools, it is not being picked up?
Replies
3
Boosts
0
Views
15k
Activity
May ’20
NFC background reading crashs ipod touch
Hi,i added some NFC background reading to my app. But when I try to deploy the app on the ipod touch it crashs directly. On the iPad and Simulator it works without problems, all the dont have NFC. I tried to add the canImport(CoreNFC) stuff, and also the do not embed CoreNFC.It crashs with this message:dyld: Library not loaded: /System/Library/Frameworks/CoreNFC.framework/CoreNFC Referenced from: /private/var/containers/Bundle/Application/4BD57EFD-C373-4B2E-993B-663A142995AA/nfcTest.app/nfcTest Reason: image not foundMessage from debugger: Terminated due to signal 6As soon as I have this function in my app delegate it stops working. Even its never called. #if canImport(CoreNFC) func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { guard userActivity.activityType == NSUserActivityTypeBrowsingWeb else { return false } // Confirm that the NSUserActivity object contains a valid NDE
Replies
1
Boosts
0
Views
914
Activity
Apr ’20
Apple Wallet VAS & NFC Entitlement for Approved Product Plan
So we are developing an NFC reader for a client and one of the requirements was Apple ECP. We submitted a product plan and it was approved and we were given access to the specific documentation for ECP. We are looking to only use Loyalty passes via NFC. Not Apple Pay. We wish to develop passes that have NFC capability and apparently you need another approval for NFC Entitlement. Apple just denied our application. No reason given, just denied. How are we suppose to develop a solution when we can only do one side of the development? Also we are seeing VAS mentioned and believe we also need access to this documentation as well, but no idea where to request it. Nothing in our developer portal or wpc portal. Can someone from Apple please steer us in the right direction. As we understand it we need: Approved hardware product plan (which we have) Access to ECP 2.0 documentation (which we have) Access to VAS protocol documentation (we don't have) NFC entitlement to be able
Replies
3
Boosts
0
Views
1.1k
Activity
Feb ’25
Is it possible to launch Apple pay NFC from my app (inside app)? for buying tickets
I didn't find any information regarding the Apple pay NFC for buying physical goods etc in Apple Pay documentation. Is it possible to use the Apple Pay NFC inside the app? I am able to develop an app using the apple pay in-app feature but interested to integrate the NFC Apple Pay feature also for physical goods etc.Thanks
Replies
0
Boosts
0
Views
820
Activity
Dec ’18
Background NFC Tag Reading in Airplane Mode?
Apple's docs for Background Tag Reading state clearly that: ...be aware there are times when the display is on and background tag reading is unavailable, such as if [...] Airplane mode is enabled. Is anyone aware of the actual reason behind this restriction? Consider these examples: User A visits a different country and doesn't have local cell service. They use WiFi to access the internet, but keep airplane mode on to avoid expensive roaming charges. They apparently need to pay roaming fees in order to scan an NFC tag. User B is actually on a plane (literally the reason for airplane mode). They strike up a conversation with their seatmate, who wants to share contact info using an NFC business card. It won't work until the flight lands. In both of these cases, airplane mode is restricting what seem to be harmless attempts to scan a tag. Further, users don't commonly understand this restriction, and I am at a loss for how to explain Apple's reasoning to frustrated customers. Does anyone have a
Replies
0
Boosts
0
Views
1.1k
Activity
Mar ’22
send url from iphone to iphone via nfc Wallet pass
Is it possible to send a URL from iphone to iphone via nfc, for example send the Wallet pass?
Replies
0
Boosts
0
Views
635
Activity
Feb ’21
Reply to iPhone 7: NFC capability not supported error on xCode 9 Beta 2
Which app ?Do you use NFC for Apple pay ? AFAIK, NFC is not accessible to 3rd party.
Replies
Boosts
Views
Activity
Jul ’17
Como ler o UID (Serial único) de uma Tag NFC?
alguem sabe uma forma de obter o UID de uma tag NFC Usando Swift 4?how can i read and display the UID NFC Tag ?
Replies
1
Boosts
0
Views
415
Activity
Mar ’19
Reply to iOS 11 - write to nfc
It is a pity that writing NFC tags is not supported. Writing NFC tags can be very useful to push some configuration data to the device hosting the NFC chip (a WiFi password for example). Sometimes it is very difficult to understand what is the reasoning behind this kind of decisions.Thanks,Anna.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’18
Reply to Does iOS 12 support NFC Type A in NFC reader mode?
Does IOS 12 could support NFC reading RFID , could support NFC-B mode?Someone can help to answer?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’18
Enable NFC Access for Argentina’s SUBE Transit App on iPhone
Hello Apple Developer Community and Apple Team, I want to raise awareness and gather support for an important feature request regarding NFC support on iPhone devices in Argentina. Millions of Argentinians use the official public transit card, SUBE, daily to pay for buses, subways, and trains. On Android devices, the SUBE app allows users to: • Check balance via NFC • Reload credit instantly • Confirm top-ups by holding the card near the phone • Use a digital version of the card (in some cases) However, iPhone users cannot use these NFC features because iOS currently does not allow third-party apps like SUBE to access the NFC chip fully. This limitation negatively impacts iPhone users, many of whom rely heavily on SUBE. I have submitted detailed feedback to Apple requesting the enablement of controlled NFC access for third-party transit apps in Argentina, starting with SUBE. I encourage fellow developers, users, and community members to support this request. Enablin
Replies
1
Boosts
0
Views
209
Activity
Jun ’25
Anyone know if Apple has published details on NFC features for iOS 12?
I saw that Apple is opening up NFC to allow phones to do things like open doors etc which means they are allowing a way to do card emulation. I cannot find any info on this on their site with exception of the keynote when they discussed this. Is this going to be included in CoreNFC or is this something that Apple Wallet will do? Basically looking for a starting point on this as we need the ability to connect to an NFC reader by tap of iPhone.
Replies
1
Boosts
0
Views
718
Activity
Jun ’18
Is it possible to raise Priority / Precedence of NFC Tasks over Network Function?
I'm facing issue on my NFC app such that the 'SendMiFareCommand()' API returns 'Tag Connection Lost' or 'Tag No Response' errors very frequently, especially on iPhone 12 and above, where 5G signal is weak. Since the issue doesn't appear on older iPhones or even on newer iPhones when they're put in flight mode, with exactly the same setup, we're certain that it has got to do something with the way iOS handles NFC function when 5G signal reception is poor. We even got this seconded from NFC tag manufacturers NXP and ST. So is there any way I can adjust priority / precedence of NFC function when 5G signal reception is poor? With 5G signal poor in almost all areas of the US as of now, this issue is pressing and affects the entire UX of my app.
Replies
0
Boosts
0
Views
560
Activity
Jan ’23
Regarding Reading NFC Core Information
I am developing an APP, scan and read NFC Tag information. I can only get the message in the NFC tag, but I cannot get the chip information. Or rather, the information obtained is incomplete. Look at the code: NFCNDEFReaderSession *session; - (void)readerSession:(NFCNDEFReaderSession *)session didDetectTags:(NSArray<__kindof id> *)tags API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos, macos, tvos) { NSLog(@call back ios13); if (tags.count > 1) { session.alertMessage = LocalizedString(@ErrorTips4); [session restartPolling]; return; } id firstTag = tags.firstObject; HBNFCNDEFTag *ndefTag = firstTag; NSLog(@ndefTag == %@, [ndefTag valueForKey:@_tag]); dispatch_async(dispatch_get_main_queue(), ^{ [self invalidateSession]; }); } Obtain datas: ndefTag == -BA5A89060AA01FAB { Tech=Unknown Type=Unknown ID=(null), NDEF=4, capacity=137, messageSize=45 } An Other: NFCTagReaderSession *tagSession; - (void)tagReaderSession:(NFCTagReaderSession *)session didDetectTags:(NSArray<__kindof id> *
Replies
1
Boosts
0
Views
510
Activity
Jul ’24