What is the name of the feature in ios that converts addresses and dates into links?

What is the name of the feature in ios that converts addresses and dates into links, and then opens the maps or calendar app when you click on them?


I'm trying to find the name of this feature so I can figure out if it is supported by reactive native at all (it doesn't seem to be, at least not that I can find).

Replies

I have found an answer to this... it is Data Detector Types property on UITextView.

https://developer.apple.com/documentation/uikit/uitextview/1618607-datadetectortypes


Then similar for RN

https://facebook.github.io/react-native/docs/textinput#datadetectortypes

The part that recognizes content like phone numbers or addresses is called 'Data Detectors'.


https://developer.apple.com/documentation/foundation/nsdatadetector


It's also built into a lot of other controls in UIKit like UITextView.