Swift在不可编辑的UITextView中检测荷兰语的位置/地址

时间:2015-04-07 08:55:57

标签: swift uitextview

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

我正在尝试将地址显示为指向用户的链接,并允许用户在点击时导航到某个位置。最简单的方法是使用UITextView,并使用这种方法,我可以让UITextView检测电话号码和URL,但不是位置/地址。

我按以下方式设置文本:

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莱顿荷兰。但是UITextView似乎无法做到这一点。

修改

是否需要调整地址的格式?或者它就像Android一样,它只能检测美国地址吗? (刚刚测试过并且美国地址有效)

1 个答案:

答案 0 :(得分:0)

当您将手机上的区域更改为其他区域时,例如荷兰人,它确实有效。但是,拥有不同地区的外国人怎么能把这看作是一个环节。人们是否必须自己即兴创作?

修改

确切地知道Apple需要什么格式是有用的。例如,“1234AB”无法正常工作,“1234 AB”无法正常工作