memory leaking iPhone sdk?

2019-03-05 03:04发布

I am trying out this application found over here: http://blog.objectgraph.com/index.php/2010/02/24/parsing-html-iphone-development/

this application is contantly crashing.. i think there is a mem. leaking could any one help me fix this

thanks

1条回答
来,给爷笑一个
2楼-- · 2019-03-05 03:31

okay here is yar solution... you released htmlData at the end. dont release it. cause you didn't alloc that...

NSData *htmlData = [NSData dataWithContentsOfURL:[NSURL URLWithString: @"http://www.objectgraph.com   /contact.html"]];
TFHpple *xpathParser = [[TFHpple alloc] initWithHTMLData:htmlData];     
NSArray *elements  = [xpathParser search:@"//h3"]; // get the page title
TFHppleElement *element = [elements objectAtIndex:0];
NSString *h3Tag = [element content];  
NSLog(@"Html tags :%@",h3Tag);
mLabel.text = h3Tag;
[xpathParser release];
查看更多
登录 后发表回答