YR.no-API からデータを保存する XML パーサーを作成しようとしています。パーサーは、これら 2 つのデータ構造にデータを追加する必要があります。私の問題は、WeatherTimeData オブジェクトを WeatherData の配列に追加しようとすると、オブジェクトが追加されないようです。次のカウントでは常にゼロになります。
- (void) parser:(NSXMLParser *)parser didEndElement:(NSString *)elementname namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
if ([elementname isEqualToString:@"time"])
{
[self.weatherdata.timedata addObject:currentWeatherTimeData];
NSLog(@"amount of objects in timedata-array %d", [[self.weatherdata timedata] count]);
}
これらは私の 2 つのデータ構造です。次のメソッドで weatherData を割り当てます
-(id) loadXMLByURL:(NSString *)urlString
{
_weatherdata = [[WeatherData alloc] init];
NSURL *url = [NSURL URLWithString:urlString];
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
parser = [[NSXMLParser alloc] initWithData:data];
parser.delegate = self;
[parser parse];
return self;
}
配列を weatherdata オブジェクト内に割り当てる必要がありますか?
WeatherData.h
@interface WeatherData : NSObject
@property (strong, nonatomic)NSString *town;
@property (strong, nonatomic)NSString *country;
@property (strong, nonatomic)NSMutableArray *timedata;
@end
WeatherData.m
@implementation WeatherData
@synthesize town = _town;
@synthesize country = _country;
@synthesize timedata = _timedata;
@end
WeatherTimeData.h
@interface WeatherTimeData : NSObject
@property (strong, nonatomic)NSDate *startTime;
@property (strong, nonatomic)NSDate *endTime;
@property (strong, nonatomic)NSString *iconSymbol;
@property (strong, nonatomic)NSString *windDirection;
@property (strong, nonatomic)NSString *windSpeed;
@property (strong, nonatomic)NSString *temprature;
@property (strong, nonatomic)NSString *preassure;
@end
WeatherTimeData.m
@implementation WeatherTimeData
@synthesize startTime = _startTime;
@synthesize endTime = _endTime;
@synthesize iconSymbol = _iconSymbol;
@synthesize windDirection = _windDirection;
@synthesize windSpeed = _windSPeed;
@synthesize temprature = _temprature;
@synthesize preassure = _preassure;
@end