Swift 在不可编辑的 UITextView 中检测荷兰语 location/address

Swift detect Dutch location/address in non-editable UITextView

所以我正在开发一个应用程序来向用户显示一些信息。

我正在尝试让一个地址显示为 link 给用户,并允许用户在单击它时导航到某个位置。最简单的方法是为此使用 UITextView 并使用此方法我已经能够让 UITextView 检测到 phone 数字和 URL,但不是 location/address.

我是这样设置文字的:

locationLabel.scrollEnabled = true
locationLabel.text = est.getAddressString()
locationLabel.makeAddress()
locationLabel.sizeToFit()
locationLabel.scrollEnabled = false

makeAddress 方法执行以下操作:

internal func makeAddress() {
    // see https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIKitDataTypesReference/#//apple_ref/c/tdef/UIDataDetectorTypes
    dataDetectorTypes = UIDataDetectorTypes.Address

    var mutString: NSMutableAttributedString = NSMutableAttributedString(string: self.text!)
    mutString.addAttribute(NSUnderlineStyleAttributeName, value: NSUnderlineStyle.StyleSingle.rawValue, range: NSMakeRange(0, mutString.length))
    self.attributedText = mutString
}

我要检测的地址例如:Albinusdreef 2 2333ZA Leiden Netherlands。然而,UITextView 似乎无法做到这一点。

编辑

是不是我必须调整地址格式?或者它就像 Android 一样,它只能检测美国地址吗? (刚刚测试,美国地址有效)

当您将 phone 上的区域更改为其他区域时,例如荷兰的,它确实有效。但是一个异域的老外怎么能把这看成link呢。是否必须自己即兴创作一些东西?

编辑

准确了解 Apple 要求的格式会很有用。例如“1234AB”不能正常工作而“1234 AB”可以