Here is my sources

(void)viewDidLoad

{


    self.receiveData = [[NSMutableData alloc] init];



    NSMutableString *str = [NSMutableString 
stringWithString:@"http://www.google.com/ig/api?hl=ko&weather=seoul"];

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL 
URLWithString:str]];

    [request addValue:@"Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; ko; rv:1.9.1.2) 
Gecko/20090729 Firefox/3.5.2" forHTTPHeaderField:@"User-Agent"];

    self.urlConnection = [[NSURLConnection alloc] initWithRequest:request 
delegate:self];

    [super viewDidLoad];



    // Do any additional setup after loading the view from its nib.

}

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {

    [self.receiveData appendData:data];



}

- (void)connectionDidFinishLoading:(NSURLConnection *)connection {

    NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData:self.receiveData];

    [xmlParser setDelegate:self];

    [xmlParser parse];

}

BOOL forcastInformationFlag;

BOOL currentConditionFlag;
(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName

  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName

    attributes:(NSDictionary *)attributeDict {

    currentConditions = [[NSMutableString alloc] init];

    if ([elementName isEqualToString:@"current_conditions"]) {

        forcastInformationFlag = YES;

    }


    if (forcastInformationFlag == YES && [elementName isEqualToString:@"city"]) {

        [self.areaText setText:[attributeDict objectForKey:@"data"]];

    }



    if (forcastInformationFlag == YES && [elementName 
isEqualToString:@"current_date_time"]) {

        [self.dateText setText:[attributeDict objectForKey:@"data"]];

        forcastInformationFlag = NO;

    }



    if (currentConditionFlag == YES && [elementName isEqualToString:@"condition"]) {

        [self.weatherText setText:[attributeDict objectForKey:@"data"]];

    }



    if(currentConditionFlag == YES && [elementName isEqualToString:@"temp_c"])

    {

        [self.tempText setText:[attributeDict objectForKey:@"data"]];       

    }



    if(currentConditionFlag == YES && [elementName isEqualToString:@"humidity"])

    {

        [self.humidityText setText:[attributeDict objectForKey:@"data"]];       

    }



    if(currentConditionFlag == YES && [elementName isEqualToString:@"wind_condition"])

    {

        [self.windText setText:[attributeDict objectForKey:@"data"]];   

        currentConditionFlag = NO;

    }

    if(currentConditionFlag == YES && [elementName isEqualToString:@"icon"])

    {

        [self.conditionsImageView setImage:[attributeDict objectForKey:@"data"]];

    }

}

I am now using Google weather api weather is making the application

We checked the address of the xml api result, the weather can be parsed as an image icon, it was found that.

However, the methods I do not get weather icon.

I see no icon for the Internet, one will be able to find the files in icodeblog difficult to take advantage of repeatedly broken.

So you ask for help.

In this state I would like to know how to see the image.

In addition to the possible way to change the icon and tell um, you're smiling*

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.