"由于未捕获的异常'NSInvalidArgumentException'终止应用程序错误,iPhone上的stringByTrimmingCharactersInSet

0 iphone objective-c

我正在从服务器读取JSON数据,我正在尝试解析包含HTML URL的特定字符串.数据位于名为current_weatherIconUrl2的NSString中.Xcode的控制台输出如下:

2010-07-06 17:17:46.628 WhatToDo [13437:20b]现状:URL2 :(" http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png ")

我试图做的是使用"stringByTrimmingCharactersInSet"来解析'(','"',以及换行符和换行符,但我得到了NSInvalidArgumentException:

2010-06-30 00:18:07.357 WhatToDo [7299:20b] *由于未捕获异常'NSInvalidArgumentException'而终止应用程序,原因:'* - [NSCFArray stringByTrimmingCharactersInSet:]:无法识别的选择器发送到实例0x3e84970'

以下是从服务器返回的数据的摘录(我要提取的信息是粗体):

2010-07-06 17:17:46.627 WhatToDo[13437:20b] Results: {
    data =     {
        "current_condition" =         (
                        {
                cloudcover = 75;
                humidity = 42;
                "observation_time" = "08:47 AM";
                precipMM = "0.0";
                pressure = 1003;
                "temp_C" = 36;
                "temp_F" = 97;
                visibility = 10;
                weatherCode = 113;
                weatherDesc =                 (
                                        {
                        value = Sunny;
                    }
                );
                **weatherIconUrl =                 (
                                        {
                        value = "http://www.worldweatheronline.com/images/wsymbols01_png_64/wsymbol_0001_sunny.png";
                    }
                );**
                winddir16Point = WSW;
                winddirDegree = 250;
                windspeedKmph = 31;
                windspeedMiles = 19;
            }
        );
    };
}
Run Code Online (Sandbox Code Playgroud)

这是将数据解析为NSString变量的代码.

- (void) readWeather {
    NSLog(@"readWeather started");
    NSMutableArray *imageArray = [[NSMutableArray alloc] init];
    NSData *jsonObjectString;
    NSString *completeString = [NSString stringWithFormat:
                            @"http://www.worldweatheronline.com/feed/weather.ashx?key=988ae47cc3062016100606&lat=25.04&lon=121.55&num_of_days=5&format=json", jsonObjectString];                               

    NSLog(@"Weather URL: %@", completeString);

    NSURL *urlForValidation = [NSURL URLWithString:completeString];               
    NSMutableURLRequest *validationRequest = [[NSMutableURLRequest alloc] initWithURL:urlForValidation];                          
    [validationRequest setHTTPMethod:@"POST"];             
    NSData *responseData = [NSURLConnection sendSynchronousRequest:validationRequest returningResponse:nil error:nil];  
    [validationRequest release];

// Store incoming data into a string
NSString *jsonString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];

// Create a dictionary from the JSON string
NSDictionary *results = [jsonString JSONValue];

NSLog(@"Results: %@", results);

NSArray *data = [[results objectForKey:@"data"] objectForKey:@"current_condition"];

NSArray *data2 = [[results objectForKey:@"data"] objectForKey:@"weather"];

NSCharacterSet *skipSet = [NSCharacterSet characterSetWithCharactersInString:@"("];

for (NSArray *current_condition in data)
{
    // Get title of the image
    NSString *temp_C = [current_condition valueForKey:@"temp_C"];
    NSString *current_weatherDesc = [current_condition valueForKey:@"weatherDesc"];
    NSString *current_weatherIconUrl = [current_condition valueForKey:@"weatherIconUrl"];
    NSString *current_weatherIconUrl2= [current_weatherIconUrl valueForKey:@"value"];

    //Commented out because this will create an exception: 
    //NSString *current_weatherIconUrl3 = [current_weatherIconUrl2 stringByTrimmingCharactersInSet:skipSet];
    //NSLog(@"Current Condition: URL2: %@", *(current_weatherIconUrl3);

    //Commented out because this will create an exception: 
    //current_weatherIconUrl3 = [current_weatherIconUrl3 stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
}
Run Code Online (Sandbox Code Playgroud)

有人可以告诉我我做错了什么或者是否有比使用更好的方法stringByTrimmingCharactersInSet

Dou*_*aan 5

您获得的错误实际上描述了出错的地方:

2010-06-30 00:18:07.357 WhatToDo [7299:20b]*由于未捕获异常'NSInvalidArgumentException'而终止应用程序,原因:'* - [NSCFArray stringByTrimmingCharactersInSet:]:无法识别的选择器发送到实例0x3e84970'

你想一个无法识别的选择(送stringByTrimmingCharactersInSet:)到的实例NSCFArray(NSArray).

显然,这个选择器只存在于NSString,所以这不起作用.

它似乎[current_weatherIconUrl valueForKey:@"value"]真的是一个NSArray,而不是一个NSString.