开发者

memory leaking iPhone sdk?

I am trying out this 开发者_JAVA百科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


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];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜