I am using the code below to parse an online XML file. When I run the application, my textfields are empty. How do I extract the strings from the NSXMLParser and put them into IBOutlets such as textfields, menu items, or labels?
interface file:
#import <Foundation/Foundation.h>
@interface XMLCurrent : NSObject <NSXMLParserDelegate> {
IBOutlet NSTextField *location;
IBOutlet NSTextField *condition;
IBOutlet NSTextField *degreesF;
NSMutableString *xmlLocation;
NSMutableString *xmlWeather;
NSMutableString *xmlTempF;
}
- (void)fetchCurrentWeather:(id)sender;
@end
implementation file:
#import "XMLCurrent.h"
@implementation XMLCurrent
- (void)fetchCurrentWeather:(id)sender {
NSURL *xmlURL = [NSURL URLWithString:@"http://www.weather.gov/xml/current_obs/KCLT.xml"];
NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:xmlURL];
[parser setDelegate:self];
[parser parse];
}
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict {
if ([elementName isEqual:@"location"]) {
xmlLocation = [[NSMutableString alloc] init];
}
if ([elementName isEqual:@"weather"]) {
xmlWeather = [[NSMutableString alloc] init];
}
if ([elementName isEqual:@"temp_f"]) {
xmlTempF = [[NSMutableString alloc] init];
}
}
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
[xmlLocation appendString:string];
[xmlWeather appendString:string];
[xmlTempF appendString:string];
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {
if ([elementName isEqual:@"location"]) {
[location setStringValue:xmlLocation];
}
if ([elementName isEqual:@"weather"]) {
[condition setStringValue:xmlWeather];
}
if ([elementName isEqual:@"temp_f"]) {
[degreesF setStringValue:xmlTempF];
}
}
@end
IBOutlets are properly connected? – dasblinkenlight Feb 15 at 16:03if ([elementName isEqual:@"location"])by clicking on the vertical bar to the left of your editor's text space, and run with breakpoints enabled. Once your breakpoint is hit, hover the cursor overlocationvariable to see its value. – dasblinkenlight Feb 15 at 16:49fetchCurrentWeathergets called then? Could you set a breakpoint at the beginning of that method to make sure that theparsegets called? – dasblinkenlight Feb 15 at 17:16application:didFinishLaunchingWithOptions:in your app delegate file. If that breakpoint does not get hit, something is wrong with your debugging environment. – dasblinkenlight Feb 15 at 17:26