IAMの作業が、私はのviewDidLoadでNSXmlParserオブジェクトを宣言しmethod.Butこのオブジェクトができる場所release.So私のコードをobject.Seeリリースのための正しい場所がある私に教えてくださいNSXmlParserオブジェクトを解放するには?そのアプリケーションapplication.In 1に
NSString *xmlFilePath = [[NSBundle mainBundle] pathForResource:@"file" ofType:@"xml"];
NSData *data=[NSData dataWithContentsOfFile:xmlFilePath];
NSXMLParser *xmlParser = [[NSXMLParser alloc] initWithData:data];
[xmlParser setDelegate:self];
[xmlParser setShouldProcessNamespaces:NO];
[xmlParser setShouldReportNamespacePrefixes:NO];
[xmlParser setShouldResolveExternalEntities:NO];
[xmlParser parse];