我得到了內存泄漏的奇怪問題,xml解析期間的內存泄漏問題?
現在我的代碼,
-(NSMutableDictionary *)getParsedWallpaperData{
NSMutableDictionary *dataDictionary = [NSMutableDictionary dictionary];
NSData *xmlData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Wallpaper" ofType:@"xml"]];
TBXML *tbXml = [[TBXML alloc] initWithXMLData:xmlData error:nil];
//TBXML *tbXml = [[TBXML tbxmlWithXMLData:xmlData error:nil] autorelease];
@synchronized(self){
TBXMLElement *rootXMLElement = tbXml.rootXMLElement;
if(rootXMLElement)
{
TBXMLElement *paging = [TBXML childElementNamed:kPaging parentElement:rootXMLElement];
NSMutableDictionary *pagingData = [[NSMutableDictionary alloc] init];
if(paging){
TBXMLElement *totalPages = [TBXML childElementNamed:kTotalPages parentElement:paging];
NSString *totalPagesString = [TBXML textForElement:totalPages];
[pagingData setObject:totalPagesString forKey:@"TotalPages"];
TBXMLElement *currentPage = [TBXML childElementNamed:kCurrentPage parentElement:paging];
NSString *currentPageString = [TBXML textForElement:currentPage];
[pagingData setObject:currentPageString forKey:@"CurrentPage"];
TBXMLElement *prevPage = [TBXML childElementNamed:kPerviousPage parentElement:paging];
NSString *prevPageString = [TBXML textForElement:prevPage];
[pagingData setObject:prevPageString forKey:@"PreviousPage"];
TBXMLElement *nextPage = [TBXML childElementNamed:kNextPage parentElement:paging];
NSString *nextPageString = [TBXML textForElement:nextPage];
[pagingData setObject:nextPageString forKey:@"NextPage"];
}
[dataDictionary setObject:pagingData forKey:@"PagingInfo"];
[pagingData release];
pagingData = nil;
TBXMLElement *totalItems = [TBXML childElementNamed:kTotalItems parentElement:rootXMLElement];
NSString *totalItemsString = [TBXML textForElement:totalItems];
[dataDictionary setObject:totalItemsString forKey:@"TotalItems"];
NSMutableArray *itemArray = [[NSMutableArray alloc] initWithCapacity:[totalItemsString intValue]];
TBXMLElement *items = [TBXML childElementNamed:kItems parentElement:rootXMLElement];
if(items){
TBXMLElement *item = [TBXML childElementNamed:kItem parentElement:items];
while (item) {
NSMutableDictionary *itemInfoDict = [[NSMutableDictionary alloc] init];
TBXMLElement *title = [TBXML childElementNamed:kTitle parentElement:item];
NSString *titleString = [TBXML textForElement:title];
[itemInfoDict setObject:titleString forKey:@"Title"];
TBXMLElement *image1 = [TBXML childElementNamed:kImage1 parentElement:item];
NSString *image1String = [TBXML textForElement:image1];
[itemInfoDict setObject:image1String forKey:@"Image1"];
TBXMLElement *image2 = [TBXML childElementNamed:kImage2 parentElement:item];
NSString *image2String = [TBXML textForElement:image2];
[itemInfoDict setObject:image2String forKey:@"Image2"];
TBXMLElement *image3 = [TBXML childElementNamed:kImage3 parentElement:item];
NSString *image3String = [TBXML textForElement:image3];
[itemInfoDict setObject:image3String forKey:@"Image3"];
TBXMLElement *thumbnail = [TBXML childElementNamed:kThumbnail parentElement:item];
NSString *thumbnailString = [TBXML textForElement:thumbnail];
[itemInfoDict setObject:thumbnailString forKey:@"Thumbnail"];
[itemArray addObject:itemInfoDict];
[itemInfoDict release];
itemInfoDict = nil;
item = item -> nextSibling;
}
}
[dataDictionary setObject:itemArray forKey:@"ImagesInfo"];
[itemArray release];
itemArray = nil;
}
}
[tbXml release];
tbXml = nil;
return dataDictionary;
}
我發現內存泄漏只TBXML * TBXML = [[TBXML頁頭] initWithXMLData:XMLDATA錯誤:零]在這一行上,即使我手動釋放tbXml對象,
請給我建議y發生這種情況?
感謝,
您是否檢查過TBXML庫中是否存在泄漏? – freespace 2012-03-19 07:45:25
@freespace,我想在TBXML庫中可能會泄漏,因爲當我使用分析器調試我的代碼時,它並沒有給我任何問題,但是它在TBXML庫中顯示了很多問題...: ( – Tirth 2012-03-19 07:51:29
然後或者(a)向TBXML提交錯誤報告,或者(b)停止使用TBXML或(c)停止使用XML,我推薦使用選項(c) – freespace 2012-03-19 08:07:07