11

有人能告诉我为什么每次都会评估为真吗?!

输入是:jkhkjhkj。我在phone字段中输入的内容并不重要。每次都是真的...

NSRange range = NSMakeRange (0, [phone length]);    
NSTextCheckingResult *match = [NSTextCheckingResult phoneNumberCheckingResultWithRange:range phoneNumber:phone];
if ([match resultType] == NSTextCheckingTypePhoneNumber)
{
    return YES;
}
else 
{
    return NO;
}

这是 的值match

(NSTextCheckingResult *) $4 = 0x0ab3ba30 <NSPhoneNumberCheckingResult: 0xab3ba30>{0, 8}{jkhkjhkj}

我正在使用 RegEx,NSPredicate但我已经读过自 iOS4 以来建议使用它,NSTextCheckingResult但我找不到任何好的教程或示例。

提前致谢!

4

1 回答 1

37

您使用的课​​程不正确。NSTextCheckingResult是由NSDataDetectoror完成的文本检查的结果NSRegularExpression。改用NSDataDetector

NSError *error = NULL;
NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypePhoneNumber error:&error];

NSRange inputRange = NSMakeRange(0, [phone length]);
NSArray *matches = [detector matchesInString:phone options:0 range:inputRange];

// no match at all
if ([matches count] == 0) {
    return NO;
}

// found match but we need to check if it matched the whole string
NSTextCheckingResult *result = (NSTextCheckingResult *)[matches objectAtIndex:0];

if ([result resultType] == NSTextCheckingTypePhoneNumber && result.range.location == inputRange.location && result.range.length == inputRange.length) {
    // it matched the whole string
    return YES;
}
else {
    // it only matched partial string
    return NO;
}
于 2012-07-11T13:30:18.637 回答