Search results for

“nfc”

1,191 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
521
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
289
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
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.
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
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:
Replies
Boosts
Views
Activity
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
Replies
5
Boosts
0
Views
13k
Activity
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:
Replies
Boosts
Views
Activity
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
Replies
0
Boosts
0
Views
521
Activity
Sep ’17
Will NFC write be opened anytime soon?
I'm developing an app which uses NFC read, but would also like to be able to write.I know Writing to NFC is not currently supported, but i was wondering if/when this functionality will be released
Replies
0
Boosts
0
Views
399
Activity
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
Replies
3
Boosts
0
Views
5.2k
Activity
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.
Replies
0
Boosts
0
Views
289
Activity
Oct ’17
Reply to NFC Tag UID Reading
Hi Caster,I develop an app using NFC scan, and I confirm you can't access the tag UID for now.I'd like to know too if it is planned (and when).
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’17
Reply to NFC Tag UID Reading
There they seem to have found a way to access the UID :https://github.com/hansemannn/iOS11-NFC-Example/issues/16But it is likely a private API, which can cause rejection from the AppStore...
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Oct ’17
We need to develop an app that is able NFC payment system for electric cars for our technology: on board battery charge, without car stop.
We need to develop an app that is able NFC payment system for our technology for electric vehicles. The technology allows the driver to charge the batteries on the go, without car stop, and the payment for kW charged must be done via mobile app.
Replies
1
Boosts
0
Views
649
Activity
Nov ’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
Replies
11
Boosts
0
Views
11k
Activity
Nov ’17
Reply to Core NFC - can read a NFC tag - now I need payload data
It is possible to read protected NFC tags in iOS?I searched around NFC NDEF protocols in Apple documentation but there is no functions that require a challenge/handshake for NFC tags. Is there a way to interact with these types of NFC tags?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’17
Why can't Educational institutions allow the NFC Tag reading App service?
Hi, I'm having an issue with my educational institution membership not allowing me to enable NFC tag reading capabilities in App services. It does not appear as an option, but an individual member can?Why is this?Thanks,Adam
Replies
0
Boosts
0
Views
416
Activity
Nov ’17