Hi, there is a issue that iOS background NFC scanning will only provide a notification result, It need user click to enter my APP, can I have any method to enter my APP directly without user action ?
Search results for
nfc
1,175 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
What API are you using to write the NFC tag data? Basic CoreNFC functionality only allows apps to write to a tag (Creating NFC Tags from Your iPhone). If what you mean by Write Virtual NFC is you want your app to turn into a tag so the reader can interact with it, this is not possible except for very specific use cases. You can read about the capabilities and requirements for these use cases in the following documents: NFC & SE Platform for secure contactless transactions HCE-based contactless transactions for apps in the European Economic Area (EEA) At this time, no other use cases are supported. Argun Tekant / DTS Engineer / Core Technologies .
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I read a typeB card by NFC API.I'll run this method when there's a card reading error: [self.session restartPolling] ; but after that,the delegate tagReaderSession:didDetectTags: will not be called sometimes in iOS14. This is a low probability event that can be reproduced in about 10 or 20 retries. Has anyone had this problem? Is there anyone who can help me solve this problem? Thanks, guys.
NFC reading starts but after BAC, during the reading of DG2 the NFC stops reading and returns with Tag connection Lost error . It almost fails everytime on iPhone 15 Pro max with the following error. What's the solution for this? This is really important because our app entirely relies on the NFC data to proceed forward. This always fails in iPhone 15 & 16. Same card works fine on older iPhone models. What change should we do or include for the newer models. Error Domain=NFCError Code=102 Tag response error / no response UserInfo={NSLocalizedDescription=Tag response error / no response, NSUnderlyingError=0x303bd6af0 {Error Domain=nfcd Code=29 Tag Error UserInfo={NSLocalizedDescription=Tag Error, NSUnderlyingError=0x303bd6910 {Error Domain=com.apple.nfstack Code=20 No response from tag UserInfo={NSLocalizedDescription=No response from tag}}}}}
I have HID NFC readers for the door access, I have added the Door access on the HID mobile access app. Everytime when i tap the HID NFC reader my default banking card will pop-up.. how to avoid this kindly help,,
Topic:
App & System Services
SubTopic:
Apple Pay
Tags:
Does anyone know the answer? Does iOS NFC support reading credit card infomation at all? I see Apple document saying Core NFC doesn't support payment-related Application IDs., but don't understand what this means. Thanks!
Topic:
App & System Services
SubTopic:
Apple Pay
Tags:
Good evening everyone, I have the exact same issue. My app will read an NFC chip that I attached to the back of the phone, but it will never read it a second time... Has anyone fixed this?? My app is an advertising app where you attach an NFC chip to a sticker (advertisement) and the phone will verify that the sticker is presents by once or twice a month verifying that the chip is within range of the NFC radio in the Iphone... My developer who wrote the initial app, could not figure it our. Any assistance would be greatly appreicated!
Topic:
App & System Services
SubTopic:
General
Tags:
We have NFC capabilties enabled for our app ID - com.uob.mightyvn but our minimum deployment target is 15.0. We do not have an option deselect PACE from provisioning profile. Hence, the validation is failed for IPA. Invalid entitlement for core nfc framework. The sdk version '18.2' and min OS version '15.0' are not compatible for the entitlement 'com.apple.developer.nfc.readersession.formats' because 'NDEF is disallowed'
Topic:
Code Signing
SubTopic:
Certificates, Identifiers & Profiles
Tags:
Provisioning Profiles
Core NFC
Code Signing
Hello,I am currently writing a little prototype using CoreNFC and NFCTagReaderSession with ISO15693 tags.I have a custom command that takes some data as an input and expects to get output data from the tag.I have successfully sent this command to the tag using the app NFC Tools on Android and received the data that I've expected, but fail to get the same response on iOS 13.3.1. All I get is this error:[NFCTagReaderSession transceive:tagUpdate:error:]:735 Error Domain=NFCError Code=102 Stack Error UserInfo={NSLocalizedDescription=Stack Error, NSUnderlyingError=0x282454150 {Error Domain=nfcd Code=10 Invalid Parameter UserInfo={NSLocalizedDescription=Invalid Parameter}}}Why does this command work on Android but not on iOS?The command lies within the range of valid custom commands (0xA0 to 0xDF) for ISO15693 tags.Has anyone experienced similar issues? Maybe someone can share some learnings. I am grateful for every piece of information or any help.Kind regards.
NFC chips were first found back in 2013~14 iPad Air. Supporting NFC, and supporting Apple Pay are two different things.AFAIK, the use of Apple Pay on iPad requires a man/in/middle website & mobileSafari.
Topic:
App & System Services
SubTopic:
Apple Pay
Tags:
Hi Everyone, I’m currently working on an app that uses NFC functionality, and I’ve hit a roadblock during the App Store review process. The review team has requested a demo video that demonstrates the app’s NFC functionality in use, as per Guideline 2.1. Here are the details I’ve received from the App Store team: • The demo video should show the app running on a physical iOS device, not on a simulator. • It needs to clearly document the NFC-related app features, user permission requests, and how the app interacts with NFC tags. My Challenges: 1. I’m unsure about the best way to visually capture the NFC interaction, as it involves scanning physical tags. 2. Are there any recommended tools or techniques for recording a demo on an iOS device that complies with Apple’s guidelines? 3. Has anyone successfully submitted an NFC app with a similar requirement? If so, I’d appreciate tips or examples of how you structured your video. I want to make sure I meet all th
Topic:
Community
SubTopic:
Apple Developers
Hi, I'm trying to read the tamper status from a NTAG 213 TT nfc (mifaretag - ultralight). Every time I do a sendMiFareCommand I get an error Tag is not connected. I can read the tag using an app called NFC tools and it shows the tamper status just fine. This is my code: guard tags.count > 0, let tag = tags.first else { session.invalidate() return } print(asd tags count (tags.count) isAvailable (tag.isAvailable)) switch tag { case .miFare(let miFareTag): print(asd family (miFareTag.mifareFamily)) let readBlock4: [UInt8] = [0xA4, 0x00] print(asd 1) if #available(iOS 14, *) { print(asd 2) miFareTag.sendMiFareCommand(commandPacket: Data(readBlock4)) { (result: Result) in print(asd (result)) switch result { case .success(let response): print(asd bem aqui 1 (response)) case .failure(let error): print(asd 1 Read tag error: (error.localizedDescription). Please try again.) } } } else { print(asd 3) miFareTag.sendMiFareCommand(commandPacket: Data(readBlock4)) { (response: Data, optionalError: Error
The UI cannot be modified in the way you envision. Additionally, if your NFC transfers are taking long enough to require a progress bar, I should remind you of the NFC session timeout duration, which is currently at a maximum of 20 seconds, and that cannot be changed either.
When my app close to the machine that has NFC , Apple Pay will show automaticly. can I close the Apple Pay?
Howdy, I seem to have a reliability issue when reading a type 5 tag where I get this Stack Error, but only sometimes. Other times, the reads are completing without an issue. The delegate's readerSession(:didInvalidateWithError:) is reporting type 200 (user cancelled) even though that doesn't seem to be the case. It looks like Core NFC is cancelling the session itself... What does this mean? Thanks, smkuehnhold