1

我有从 iOS 4 移植到 iOS 3.2 的代码,用于 iPad 上的演示项目。我有这个代码:

+(int) parseInt:(NSString *)str
{
    NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
    [nf setAllowsFloats:NO];
    [nf setMaximum:[NSNumber numberWithInt:INT_MAX]];
    [nf setMinimum:[NSNumber numberWithInt:INT_MIN]];

    @try {
        NSNumber *num = [nf numberFromString:str];
        if (!num)
            @throw [DataParseException exceptionWithDescription:@"the data is not in the correct format."]; 

        return [num intValue];
    }
    @finally {
        [nf release];
    }
}

这适用于 iOS 4,当字符串(例如日期,我遇到问题)时抛出异常: 1/1/2010

出于某种原因, num 不是 nil,它具有 value 1,而在 iOS 4 上,它是 nil,正如预期的那样。我最初使用NSScanner它是因为它比NSNumberFormatter使用更容易,但我遇到了同样的问题,它不解析整个字符串,只解析字符串中的第一个数字。

我可以做些什么来解决这个问题,或者我必须手动创建一个 int 解析器。我宁愿不使用基于 C 的方法,但如果必须,我会这样做。

编辑:我已将我的代码更新为:

+(int) parseInt:(NSString *)str
{
    NSNumberFormatter *nf = [[NSNumberFormatter alloc] init];
    [nf setAllowsFloats:NO];
    [nf setMaximum:[NSNumber numberWithInt:INT_MAX]];
    [nf setMinimum:[NSNumber numberWithInt:INT_MIN]];

    @try {
        IF_IOS4_OR_GREATER
        (
                NSNumber *num = [nf numberFromString:str];
            if (!num)
                @throw [DataParseException exceptionWithDescription:@"the data is not in the correct format."]; 

            return [num intValue];
        )
        else {
            NSNumber *num = nil;
            NSRange range = NSMakeRange(0, str.length);
            NSError *err = nil;
            [nf getObjectValue:&num forString:str range:&range error:&err];
            if (err)
                @throw [DataParseException exceptionWithDescription:[err description]];
            if (range.length != [str length])
                @throw [DataParseException exceptionWithDescription:@"Not all of the number is a string!"];
            if (!num)
                @throw [DataParseException exceptionWithDescription:@"the data is not in the correct format."]; 

            return [num intValue];
        }
    }
    @finally {
        [nf release];
    }
}

当我尝试解析字符串时,我得到一个 EXC_BAD_ACCESS 信号1/1/2001。有任何想法吗?(iOS 4 或更高版本在这里定义:http: //cocoawithlove.com/2010/07/tips-tricks-for-conditional-ios3-ios32.html

我有一个新错误:当我解析数字时,它不准确(就像在对浮点数使用相同代码时它有多个小数点一样)......我该如何解决这个问题?(我可能只使用@joshpaul 的答案......)

4

2 回答 2

4

我找不到任何特定于 iOS 的内容,但数据格式指南中有这样一段有趣的段落:

注意:在 Mac OS v10.6 之前,即使只能解析字符串的一部分getObjectValue:forString:errorDescription:, 的实现也会返回YES一个对象值。这是有问题的,因为您无法确定字符串的哪一部分已被解析。对于在 Mac OS v10.6 上或之后链接的应用程序,如果无法解析部分字符串,则此方法会返回错误。您可以使用来获取旧行为;此方法返回成功解析的子字符串的范围。getObjectValue:forString:range:error:

numberFromString:如果按照上述方法实现并且iOS 3.2NSNumberFormatter基于10.5而iOS 4版本是10.6,我一点也不感到惊讶。

只是我的猜测。

如果您在 iOS 3.2 上通过 1/1/2010,则 1 将被解析,其余的将被忽略。您可以通过查看在 2010 年 2 月 1 日通过时是否得到 2 来检验假设。

解决方法似乎是使用getObjectValue:forString:range:error:.

于 2010-11-04T09:12:49.877 回答
1

所以基本[str intValue]没用?也不,[scanner scanInt:&int]

怎么样使用NSCharacterSet,即:

NSString *test = [str stringByTrimmingCharactersInSet:[NSCharacterSet decimalDigitCharacterSet]];
if ([test length]) @throw ...;
return [str intValue];
于 2010-11-04T01:01:42.737 回答