1

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
4

1 に答える 1

1

このタイプの問題は、オブジェクトが割り当てられていないため、古典的に発生し、Objective-C ではnilプログラマーにメッセージを送信できるため、気付かないことがあります。

そのようなイベントが標準出力に記録されるランタイム環境変数を提供できるといいと思います...

それ[WeatherTimeData init]は作成timedataしていないのではないかと思います。それは、実装を提供していないためです。オブジェクトを作成するには、使用するだけ@sythensizeでは不十分です。

于 2013-05-30T08:36:32.583 に答える