I'm working with NSDataDecetor in UITextView. NSDataDecetor detects date and it works correctly. But I don't know how to check when date contains time, because if text doesn't specific time (e.g. at 5PM), NSDataDecetor will set time for 12AM. Here's my code:
let types: NSTextCheckingResult.CheckingType = [.date]
let detector = try NSDataDetector.init(types: types.rawValue)
let range = NSRange(text.startIndex..<text.endIndex, in: text)
detector.enumerateMatches(in: text, options: [], range: range) { result, flags, _ in
addDueDateToList(range: result!.range, date: result!.date! as NSDate, hasTime: ??)
}
Thanks in advance