Search results for

nfc

1,175 results found

Post

Replies

Boosts

Views

Activity

Reply to How to demonstrate NFC chip is only for ApplePay
The proximity sensor has absolutely nothing to do with the NFC chip. It's a light sensor that is sitting next to or around the speaker and front camera of your iPhone (and it has been there since the first iPhone, before iPhones had front facing cameras or NFC).iOS 11 does give third-party apps the ability to read NDEF-formatted NFC tags, which expands the capabilities of the NFC chip of iPhone 7 devices (and newer) beyond Apple Pay.
Sep ’17
Reply to CoreNFC: Lock in application switch
Hi Martin,I saw the same issue since iOS11Beta3....I didn't know why, but I suspected NFC scanning thread while opening URL.My workaround was to stop NFCScan, then to add a short delay in didDetectNDEF callback before calling openURL. As I thought it came from my code, I didn't post a possible bug....but now, I have a doubt :-)Here after, my workaround :func readerSession(_ session: NFCNDEFReaderSession, didDetectNDEFs messages: [NFCNDEFMessage]) { stopNFCReaderSession().......blablabla DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) { UIApplication.shared.open(...) } }Hope it helps.BR,Vincent
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’17
Reply to Has anyone managed to get Nintendo's amiibo working with iOS 11's Core NFC?
I've been trying to work with the same thing. I was able to get a very basic identifier for lego dimentions characters, but it seems that the ID is the same on certain vehicles. I also tried scanning disney infinity, skylanders figures, and Amiibo as well. None worked, however the skylanders did light up when the iPhone was in scanning mode, which is interesting. This leads me to believe that none of them use just NFC, but rather some mixture of NFC and RFID. I am not very familiar with NFC or RFID so I could be wrong. Technically CoreNFC supports RFID, it just hasn't been implemented yet, so hopefully we will see that and be able to implement that into our apps. Imagine an app that changes the theme based on a scanned Amiibo (That's what I was working on).
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’17
iOS 11 - write to nfc
Hey,I have created an app which is able to read nfc tags.Is it possible to write to nfc tags with iOS11 and iPhone7/8/X, too?I found nothing in the developer documentation about writing nfc tags.Thanks,Sebastian
5
0
13k
Sep ’17
Reply to iOS 11 - write to nfc
Tags can be read, not written.You can get details here :h ttps://gototags.com/blog/apple-ios-11-supports-reading-nfc-tags-iphone-7-iphone-8-core-nfc/What NFC functions are available?Only reading NFC tags is supported in iOS 11, not writing NFC tags or card emulation.Why just support reading NFC tags and not writing?In our experience, regular consumers just don’t encode NFC tags. Only geeks (like us) and a few verticals support it. In 99% of projects we have worked on (millions of NFC tags), the tags are pre-encoded before delivery to the consumer. The implication of this is that NFC tags must be NDEF encoded in order to be read by an iPhone.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’17
CoreNFC supported tags
I created a test app for scanning NFC tags. As far as I know, it's working like it should, the Scan dialog comes up, but when I try to scan an NTAG 203 tag, it doesn't even do anything, not even give me an error. I also downloaded the following app and got the same results. It doesn't acknowledge the NFC tag at all.I'm testing on an iPhone 7 with iOS 11https://itunes.apple.com/us/app/nfc-reader/id1286968328?mt=8
0
0
510
Sep ’17
NFC Tag UID Reading
Hi,I've read the official documentation about Core NFC (https://developer.apple.com/documentation/corenfc) and it seems that is not possibile to read the NFC Tag's UID.Can you confirm me this is not (yet) possible? If yes, would Apple let users read this tag information in the future?Thanks,Alberto
3
0
5.2k
Oct ’17
External RF field looks to abort NFC Scan Session
Hi,I observed that when approaching iPhone, with an NFC Scan session running (looking for NFC Tag), close to a NFC reader (any NFC reader or NFC Android phone for instance) triggers an abort of the session (I got NFC Scan Session Expired immediately).Does anyone knows if the is expexted behavior or a bug ?This prevents NFC interroperability of iPhone with device capable of both Reading/Writing tags and emulating a tag. As an example, a printer would read card for user authentication and emulating tag for smart connection.Regards,Jeremy.
0
0
284
Oct ’17
Time to get NFC Apple Wallet Cert
HiHow long does it take to get an NFC Certificate from Apple? So that we can delivery NFC Enabled Loyalty Passes.We registered at the following address but haven't received any communication for over 2 weeks.https://developer.apple.com/contact/passkit/We are developing solutions for our clients and need to test the technology.We use different PassTypeIDs for each of our Customers so it's likely we will need a different NFC certificate for each of our customers.How do we get NFC Certificates in bulk so that we can deliver NFC Loyalty Programmes to our Customers?Thanks
11
0
11k
Nov ’17