我正在使用文本视图。如果在文本视图中键入了URL,我想删除它。但在找到该URL后,我无法删除它
qzwqbdag1#
请尝试以下操作:
yourTextView.dataDetectorTypes = []
dauxcl2d2#
func removingUrls() -> String { guard let detector = try? NSDataDetector(types: NSTextCheckingResult.CheckingType.link.rawValue) else { return self } return detector.stringByReplacingMatches(in: self, options: [], range: NSRange(location: 0, length: self.utf16.count), withTemplate: "") } }
2条答案
按热度按时间qzwqbdag1#
请尝试以下操作:
dauxcl2d2#