我的应用程序没有崩溃。
DDXMLDocument *d = [[DDXMLDocument alloc] initWithData:abookConnData options:0 error:nil];
books = [d nodesForXPath:@"abooks/abook" error:nil];
我将 DDXMLDocument 的对象更改为自动释放,我的应用程序开始崩溃。但为什么?
DDXMLDocument *d = [[[DDXMLDocument alloc] initWithData:abookConnData options:0 error:nil] autorelease];
books = [d nodesForXPath:@"abooks/abook" error:nil];
我的应用程序在 DDXMLNode 中崩溃了。[DDXMLNode XMLStringWithOptions:]