您好,登錄后才能下訂單哦!
可以使用NSDataDetector的initWithTypes方法來指定需要檢測的元素類型,從而減少內存負擔。例如,可以只檢測鏈接和日期兩種元素類型:
NSDataDetector *detector = [[NSDataDetector alloc] initWithTypes:NSTextCheckingTypeLink | NSTextCheckingTypeDate error:nil];
然后使用detector的matchesInString方法來檢測字符串中的鏈接和日期:
NSString *string = @"Visit us at http://www.example.com on 2022-01-01";
NSArray<NSTextCheckingResult *> *matches = [detector matchesInString:string options:0 range:NSMakeRange(0, [string length])];
for (NSTextCheckingResult *match in matches) {
if (match.resultType == NSTextCheckingTypeLink) {
NSURL *url = match.URL;
NSLog(@"Detected link: %@", url);
} else if (match.resultType == NSTextCheckingTypeDate) {
NSDate *date = match.date;
NSLog(@"Detected date: %@", date);
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。