0

XML ファイルから取得している NSMutableArray に特定の名前の要素を追加しようとしています。私は要素を求めています。ここの最初の NSLog は正しく出力されます。

Found an element named: image with a value of: http://media.giantbomb.com/uploads/1/10353/2320941-untitledb_tiny.jpg

2 番目の NSLog は正しく出力します。

I'm about to try adding a game called Bayonetta 2 to the array

3 番目の NSLog は、配列にエントリがないことを常に示しています。行でエラーが発生しなかっ[_listOfGameNames addObject: element];たため、配列に追加されていない理由がわかりません。

私に何かアイデアはありますか?完全なコードは次のとおりです。

- (void) searchWithString: (NSString *)string {
    NSString *searchString = [NSString stringWithFormat: @"http://api.giantbomb.com/search/?api_key=MYKEY12345BLAHBLAH&resources=game&format=xml&query=%@", string];
    NSURL *searchURL = [NSURL URLWithString: searchString];
    parser = [[NSXMLParser alloc] initWithContentsOfURL: searchURL];
    [parser setDelegate:self];
    [parser parse];
    // NSLog(@"XMLParser just reached the end of its initWithString method. The string was %@",  searchURL);
    NSLog(@"There are %u elements in the List Of Game Names array", [_listOfGameNames count]);
}

- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName attributes:(NSDictionary *)attributeDict {
    element = [NSMutableString string];
}

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {
    NSLog(@"Found an element named: %@ with a value of: %@", elementName, element);
    if ([elementName isEqualToString:@"name"]) {
        NSLog(@"I'm about to try adding a game called %@ to the array", element);
        [_listOfGameNames addObject: element];
        NSLog(@"I added an element to the array, making a total of %u", [_listOfGameNames count]);
    }
}

- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
    if(element == nil) element = [[NSMutableString alloc] init];
    [element appendString:string];
}
4

2 に答える 2

0

回答: 可変配列を初期化していません!

于 2012-09-29T15:11:32.013 に答える
0

配列を初期化する必要があります。Getter を実装できます。

-(NSMutableArray *) listOfGameNames
{
    if(!_listOfGameNames){
        _listOfGameNames = [[NSMutableArray alloc] init];
    }

    return _listOfGameNames;
}
于 2012-09-29T15:37:54.893 に答える