How can I check if UISearchBar.text contains a URL? I thought of doing something like this:
if (searchBar.text == NSTextCheckingType.Link) {
}
but I get the error:
String is not convertible to NSObject
How can I check if UISearchBar.text contains a URL? I thought of doing something like this:
if (searchBar.text == NSTextCheckingType.Link) {
}
but I get the error:
String is not convertible to NSObject
I enhanced Imanou PETIT
's anwser.
This allows you to extract multiple URL's from a string.
extension String {
var extractURLs: [NSURL] {
var urls : [NSURL] = []
var error: NSError?
let detector = NSDataDetector(types: NSTextCheckingType.Link.rawValue, error: &error)
var text = self
detector!.enumerateMatchesInString(text, options: nil, range: NSMakeRange(0, count(text)), usingBlock: { (result: NSTextCheckingResult!, flags: NSMatchingFlags, stop: UnsafeMutablePointer<ObjCBool>) -> Void in
// println("\(result)")
// println("\(result.URL)")
urls.append(result.URL!)
})
return urls
}
}
An example usage:
var urls = text.extractURLs
for url in urls {
// do stuff with your URL
if UIApplication.sharedApplication().canOpenURL(url) {
UIApplication.sharedApplication().openURL(url)
break
}
}
With Swift 3, you can use
NSDataDetector
.NSDataDetector
has an initializer calledinit(types:)
.init(types:)
has the following declaration:In order to create a data detector that finds urls, you have to pass NSTextCheckingResult.CheckingType.link as the parameter for
init(types:)
.#1. Using
NSDataDetector
andNSRegularExpression
'senumerateMatches(in:options:range:using:)
methodAs a subclass of
NSRegularExpression
,NSDataDetector
has a method calledenumerateMatches(in:options:range:using:)
.enumerateMatches(in:options:range:using:)
has the following declaration:The Playground code below shows how to use
NSDataDetector
andenumerateMatches(in:options:range:using:)
method in order to detect if aString
containsURL
s:#2. Using
NSDataDetector
andNSRegularExpression
'smatches(in:options:range:)
methodAs a subclass of
NSRegularExpression
,NSDataDetector
has a method calledmatches(in:options:range:)
.matches(in:options:range:)
has the following declaration:The Playground code below shows how to use
NSDataDetector
andmatches(in:options:range:)
method in order to detect if aString
containsURL
s: