我有以下代碼:檢查URL是一個圖像
NSDataDetector* detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypeLink error:nil];
NSArray* matches = [detector matchesInString:[[imagesArray valueForKey:@"content"] objectAtIndex:indexPath.row] options:0 range:NSMakeRange(0, [[[imagesArray valueForKey:@"content"] objectAtIndex:indexPath.row] length])];
這一結果在日誌中:
<NSLinkCheckingResult: 0xa632220>{235, 75}{http://URL/wordpress/wp-content/uploads/2014/04/Digital-Board-2.png}
<NSLinkCheckingResult: 0xa64eb90>{280, 25}{http://www.w3schools.com/}
我需要做的是檢查鏈接它們是否包含一個圖像。在這種情況下,第一個鏈接包含一個圖像(PNG)。第二個不是。我怎樣才能做到這一點?
@Leetmorry thanx的編輯:) – Alladinian