0

我在应用程序委托中声明了 1 个数组

@property(strong,nonatomic)NSMutableArray *books;  

我在 XMLParser.m 中向这个数组添加了对象

- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName 
  namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {

    if([elementName isEqualToString:@"Books"])
        return;
    NSLog(@"i m in didEndElement");

    if([elementName isEqualToString:@"Book"]) {
        [appDelegate.books addObject:aBook]; //here i have added objects to array

        [aBook release];
        aBook = nil;

        NSLog(@"books=%@",appDelegate.books);
    }
    else 
        [aBook setValue:currentElementValue forKey:elementName];

    [currentElementValue release];
    currentElementValue = nil;
}

我已经像这样在 XMLParser.h 中声明了这个数组

@interface XMLParser : NSObject {
    NSMutableString *currentElementValue;

    AppDelegate *appDelegate;
    Book *aBook; 
}

现在我必须在 BooksDetailViewController.m 中访问这个数组,我如何访问这个数组。简而言之,我如何从应用程序委托访问数组到 BooksDetailViewController

4

1 回答 1

5

首先你应该allocinit你的数组,然后你可以在其中添加对象。

您应该BooksDetailViewController像这样创建 AppDelegate 实例,

在 .h 文件中

AppDelegate *appDelegate;

并在 .m 文件中

appDelegate = [[UIApplication sharedApplication]delegate];

现在你可以像这样访问你的数组,

appDelegate.books
于 2013-01-10T11:34:25.533 回答